From 29ca85a4bf33bd9fa8967ee8fbc1a98009283d5c Mon Sep 17 00:00:00 2001 From: Rykka Stormheart Date: Thu, 2 Mar 2023 14:32:00 -0800 Subject: [PATCH] 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. --- code/modules/mob/living/simple_mob/simple_mob.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/simple_mob/simple_mob.dm b/code/modules/mob/living/simple_mob/simple_mob.dm index fb09b33dab..b34c8eb802 100644 --- a/code/modules/mob/living/simple_mob/simple_mob.dm +++ b/code/modules/mob/living/simple_mob/simple_mob.dm @@ -247,9 +247,9 @@ if(m_intent == "walk") . *= 1.5 - . += config.animal_delay + . += config.animal_delay - . += ..() + . += ..() /mob/living/simple_mob/Stat()