mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 02:54:41 +01:00
fix: Increase radius of singulo movement target. (#26789)
* fix: Increase radius of singulo movement target. * remove redundant get_turf call
This commit is contained in:
committed by
GitHub
parent
44d594c80c
commit
fbe77e20aa
@@ -336,7 +336,7 @@
|
||||
|
||||
var/movement_dir = pick(GLOB.alldirs - last_failed_movement)
|
||||
|
||||
if(get_turf(src) == target || !target)
|
||||
if(!target || get_dist(src, target) <= 2)
|
||||
assign_target()
|
||||
if(force_move)
|
||||
movement_dir = force_move
|
||||
|
||||
Reference in New Issue
Block a user