Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrobo committed Apr 7, 2024
1 parent 2957f1e commit fb66f38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/javascripts/sign/line_2024.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ app.controller('ddController', ['$scope', '$uibModal', '$log', '$timeout', '$htt
$scope.checkPointDistance.push({
dis: finalDis,
status: $scope.exitBonus,
point: finalDis * $scope.LoPsCountPoint($scope.LoPs[j])
point: finalDis * $scope.exitBonus * $scope.LoPsCountPoint($scope.LoPs[j])
});
$scope.$apply();
console.log("Updated view from socket.io");
Expand Down Expand Up @@ -242,7 +242,7 @@ app.controller('ddController', ['$scope', '$uibModal', '$log', '$timeout', '$htt
$scope.checkPointDistance.push({
dis: finalDis,
status: $scope.exitBonus,
point: finalDis * $scope.LoPsCountPoint($scope.LoPs[j])
point: finalDis * $scope.exitBonus * $scope.LoPsCountPoint($scope.LoPs[j])
});

$scope.victim_list = response.data.rescueOrder;
Expand Down

0 comments on commit fb66f38

Please sign in to comment.