mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +01:00
Fix movement slowdown value being rounded off (#10445)
This commit is contained in:
@@ -95,7 +95,7 @@
|
||||
if(!isnull(facing_dir) && facing_dir != dir)
|
||||
tally += 3
|
||||
|
||||
tally = round(tally,1)
|
||||
tally = round(tally, 0.1)
|
||||
|
||||
return tally
|
||||
|
||||
@@ -187,4 +187,4 @@
|
||||
var/mob/living/carbon/human/H = pulling
|
||||
if(H.species.slowdown > species.slowdown)
|
||||
. += H.species.slowdown - species.slowdown
|
||||
. += H.ClothesSlowdown()
|
||||
. += H.ClothesSlowdown()
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
author: JohnWildkins
|
||||
|
||||
delete-after: True
|
||||
|
||||
changes:
|
||||
- bugfix: "Some subspecies (Zeng-hu IPC, Tajara subspecies) should now move at their intended speeds."
|
||||
Reference in New Issue
Block a user