From 24a4d7886ed7d1908e82e430b592dc0661b5f7f4 Mon Sep 17 00:00:00 2001 From: joep van der velden Date: Tue, 20 Oct 2020 13:08:42 +0200 Subject: [PATCH] Fixes a runtime in the netherworld link --- code/modules/mob/living/simple_animal/hostile/netherworld.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/netherworld.dm b/code/modules/mob/living/simple_animal/hostile/netherworld.dm index 89164167005..ab02e92a5db 100644 --- a/code/modules/mob/living/simple_animal/hostile/netherworld.dm +++ b/code/modules/mob/living/simple_animal/hostile/netherworld.dm @@ -101,7 +101,7 @@ if(M) playsound(src, 'sound/magic/demon_consume.ogg', 50, TRUE) M.adjustBruteLoss(60) - new /obj/effect/gibspawner/generic(get_turf(M), M) + new /obj/effect/gibspawner/generic(get_turf(M), M.dna) if(M.stat == DEAD) var/mob/living/simple_animal/hostile/netherworld/blankbody/blank blank = new(loc)