Fixes Simplemob Movement Delay

Ever since #7174 was introduced, perhaps earlier, the following two lines have been indented with a space.

Erroneous or not, this meant that config.animal_delay and the parent were never checked UNLESS the simplemob was using walk intent.
This commit is contained in:
Rykka Stormheart
2023-03-02 14:32:00 -08:00
parent 06a5496246
commit 29ca85a4bf

View File

@@ -247,9 +247,9 @@
if(m_intent == "walk") if(m_intent == "walk")
. *= 1.5 . *= 1.5
. += config.animal_delay . += config.animal_delay
. += ..() . += ..()
/mob/living/simple_mob/Stat() /mob/living/simple_mob/Stat()