From 7840276f638f91c231a58991e8a1a39f01706d23 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Sat, 26 Jul 2014 14:50:24 -0400 Subject: [PATCH] We use a different methodology for respawning as NPCs. --- code/modules/hydroponics/seed_mobs.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/seed_mobs.dm b/code/modules/hydroponics/seed_mobs.dm index 0bb301298a5..4bef08248bc 100644 --- a/code/modules/hydroponics/seed_mobs.dm +++ b/code/modules/hydroponics/seed_mobs.dm @@ -4,7 +4,7 @@ // The following procs are used to grab players for mobs produced by a seed (mostly for dionaea). /datum/seed/proc/handle_living_product(var/mob/living/host) - +/* if(!host || !istype(host)) return if(product_requires_player) @@ -77,4 +77,5 @@ newname = sanitize(newname) if (newname != "") host.real_name = newname - host.name = host.real_name \ No newline at end of file + host.name = host.real_name +*/ \ No newline at end of file