Dead mobs no longer resist being eaten.

You are still horrible for breaking their prefs.
This commit is contained in:
Sharkmare
2019-03-07 03:34:45 +01:00
committed by GitHub
parent 4dfe4bf30d
commit d0a8cd59da
+2 -1
View File
@@ -258,7 +258,8 @@
/obj/belly/proc/nom_mob(var/mob/prey, var/mob/user)
if(owner.stat == DEAD)
return
if(!prey.isEdible) //CHOMPEDIT: Trying to make pred mobs prey? N O U
if(!prey.isEdible && prey.icon_state == icon_living) //CHOMPEDIT: Trying to make pred mobs prey? N O U
var/mob/living/simple_animal/preydator = prey
user.visible_message("<span class='danger'>\the [user] promptly gets tackled by \the [prey] for trying to break their prefs! !</span>!")
user.Weaken(5)