We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d349ea commit 466b4dfCopy full SHA for 466b4df
code/controllers/subsystem/movement/movement.dm
@@ -66,7 +66,7 @@ SUBSYSTEM_DEF(movement)
66
return // Still work to be done
67
var/bucket_time = bucket_info[MOVEMENT_BUCKET_TIME]
68
smash_bucket(1, bucket_time) // We assume we're the first bucket in the queue right now
69
- visual_delay = MC_AVERAGE_FAST(visual_delay, max((world.time - canonical_time) / wait, 1))
+ visual_delay = MC_AVERAGE_FAST(visual_delay, max((world.time - canonical_time) / TICKS2DS(wait), 1))
70
71
/// Removes a bucket from our system. You only need to pass in the time, but if you pass in the index of the list you save us some work
72
/datum/controller/subsystem/movement/proc/smash_bucket(index, bucket_time)
0 commit comments