Skip to content

Commit

Permalink
Fix tagnumber indexing on map
Browse files Browse the repository at this point in the history
  • Loading branch information
MortFred committed Feb 13, 2023
1 parent b999e53 commit 56fabdf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ function PlaceTagsInMap(mission: Mission, map: HTMLCanvasElement) {
if (mission.plannedTasks[0].tagPosition === null) {
return
}
var tagNumber = 0
var tagNumber = 1

mission.plannedTasks.map(function (task) {
var pixelPosition = calculateObjectPixelPosition(mission.map, task.tagPosition)
Expand Down

0 comments on commit 56fabdf

Please sign in to comment.