Skip to content

Commit

Permalink
Update pinpointer.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerfulBacon committed Dec 25, 2024
1 parent 8410d32 commit 42de007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/items/pinpointer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
z_level_direction = ""

// getting xy result
if(get_dist_euclidian(here,there) <= minimum_range || (target.is_jammed(jamming_resistance) != JAM_NONE) && get_dist_euclidian(here,there) < minimum_range + 25))
if(get_dist_euclidian(here,there) <= minimum_range || (target.is_jammed(jamming_resistance) != JAM_NONE) && get_dist_euclidian(here,there) < minimum_range + 25)
pin_xy_result = "direct"
else
setDir(get_dir(here, there))
Expand Down

0 comments on commit 42de007

Please sign in to comment.