Uploads species var from human to carbon mobs.
This commit is contained in:
mwerezak
2014-11-16 14:43:38 -05:00
parent d0d2a100bd
commit 9eb6dfdef4
16 changed files with 75 additions and 40 deletions
+7 -1
View File
@@ -319,7 +319,13 @@
for(var/mob/living/M in contents)
if (M.stat!=2)
M.emote("scream")
if (!iscarbon(M))
M.emote("scream")
else
var/mob/living/carbon/C = M
if (!(C.species && (C.species.flags & NO_PAIN)))
C.emote("scream")
//Logging for this causes runtimes resulting in the cremator locking up. Commenting it out until that's figured out.
//M.attack_log += "\[[time_stamp()]\] Has been cremated by <b>[user]/[user.ckey]</b>" //No point in this when the mob's about to be deleted
//user.attack_log +="\[[time_stamp()]\] Cremated <b>[M]/[M.ckey]</b>"