-
Notifications
You must be signed in to change notification settings - Fork 565
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes dead queen footsteps. #3815
Fixes dead queen footsteps. #3815
Conversation
Fixes #3797 |
@@ -31,7 +31,7 @@ | |||
return | |||
|
|||
var/mob/living/LM = parent | |||
if(LM.buckled || LM.throwing || LM.is_ventcrawling) | |||
if(LM.buckled || LM.throwing || LM.is_ventcrawling || LM.stat == DEAD) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this also check for uncon?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not unless/until it's coded to use an alternate sound when dragged and lying down. I just want to stop it making a sound when she's already dead as it's confusing people.
About the pull request
The corpse of the Queen should not be walking. Fixes #3797
Explain why it's good for the game
Bugs bad.
Testing Photographs and Procedure
Screenshots & Videos
Put screenshots and videos here with an empty line between the screenshots and the
<details>
tags.Changelog
🆑
fix: Fixes Queen making footstep sounds while dead and being dragged.
/:cl: