From 232ff1656cad2f71f4d43457c5ba71e75611d77b Mon Sep 17 00:00:00 2001 From: BeagleGaming1 <56142455+BeagleGaming1@users.noreply.github.com> Date: Tue, 4 Jul 2023 05:52:27 -0400 Subject: [PATCH] Queen makes movement noise even while resting (#3771) # About the pull request Removes the resting check from the footstep component # Explain why it's good for the game The queen could be dragged while resting to be moved without making any noise # Changelog :cl: add: Queen makes noise when moved even while resting /:cl: --- code/datums/components/footstep.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/components/footstep.dm b/code/datums/components/footstep.dm index 6deb27a6817b..970ab89d961e 100644 --- a/code/datums/components/footstep.dm +++ b/code/datums/components/footstep.dm @@ -31,7 +31,7 @@ return var/mob/living/LM = parent - if(LM.buckled || LM.lying || LM.throwing || LM.is_ventcrawling) + if(LM.buckled || LM.throwing || LM.is_ventcrawling) return if(LM.life_steps_total % steps)