Wow, I must've been tired on that one. Fixes respawn as NPC.

This commit is contained in:
ZomgPonies
2014-05-14 02:50:51 -04:00
parent 058658f930
commit e8ae55cead
+1 -1
View File
@@ -1143,7 +1143,7 @@ mob/proc/yank_out_object()
if((usr in respawnable_list) && (stat==2 || istype(usr,/mob/dead/observer)))
var/list/creatures = list("Mouse")
for(var/mob/living/L in living_mob_list)
if(safe_respawn(L.type) && !L.stat==2)
if(safe_respawn(L.type) && L.stat!=2)
if(!L.key)
creatures += L
var/picked = input("Please select an NPC to respawn as", "Respawn as NPC") as null|anything in creatures