Skip to content

Commit

Permalink
Queen makes movement noise even while resting (#3771)
Browse files Browse the repository at this point in the history
# 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:
  • Loading branch information
BeagleGaming1 committed Jul 4, 2023
1 parent 6f03463 commit 232ff16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/components/footstep.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 232ff16

Please sign in to comment.