Fix slowdown being applied twice (#15617)

This commit is contained in:
Wildkins
2023-01-21 19:47:39 +01:00
committed by GitHub
parent 658c7d4e20
commit c9bcc6dbd1
2 changed files with 7 additions and 1 deletions
@@ -50,7 +50,7 @@
if(HAS_FLAG(mutations, mRun))
tally = 0
tally += max(0, tally + move_delay_mod)
tally = max(0, tally + move_delay_mod)
var/obj/item/I = get_active_hand()
if(istype(I))