Dead schlorrgos can't eough (#10967)

This commit is contained in:
Doxxmedearly
2021-01-12 04:23:36 -06:00
committed by GitHub
parent 4a1eefe707
commit c7a3d1956a
2 changed files with 7 additions and 1 deletions

View File

@@ -635,7 +635,7 @@ mob/living/simple_animal/bullet_act(var/obj/item/projectile/Proj)
set name = "Make Sound"
set category = "Abilities"
if((usr && usr.stat == DEAD) || !make_sound)
if(stat || !make_sound) //Can't make noise if there's no noise or if you're unconscious/dead
return
if(usr && !sound_time)

View File

@@ -0,0 +1,6 @@
author: Doxxmedearly
delete-after: True
changes:
- bugfix: "Animals no longer can make noises when dead or unconscious."