From 488fdf85eccdfc61c7f1c212bc9d285a04594de8 Mon Sep 17 00:00:00 2001 From: Verkister Date: Wed, 10 Feb 2021 09:18:09 +0200 Subject: [PATCH] Possibly fixes simplemob bad del runtime spam Pretty sure the destroy proc expects a returned confirmation, which was like this on pretty much everything else. --- code/modules/mob/living/simple_mob/simple_mob_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index 853848b83d7..03f26ce8d00 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -54,7 +54,7 @@ /mob/living/simple_mob/Destroy() release_vore_contents() prey_excludes.Cut() - . = ..() + return ..() //For all those ID-having mobs /mob/living/simple_mob/GetIdCard()