From d64d5d4fbcbccc5befc424222aaab3adbd4f9d74 Mon Sep 17 00:00:00 2001 From: Verkister Date: Thu, 3 Mar 2022 14:06:19 +0200 Subject: [PATCH] Fixes gibbing deleting all belly contents Getting tired of watching the looc panic of qdel'd prey flare up over and over again every time a pred gets gibbed in some way or another without anyone ever making issue reports to get the bug fixed :v --- code/modules/mob/living/carbon/human/death_vr.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/mob/living/carbon/human/death_vr.dm b/code/modules/mob/living/carbon/human/death_vr.dm index 47d5b88589..24bae5c7c2 100644 --- a/code/modules/mob/living/carbon/human/death_vr.dm +++ b/code/modules/mob/living/carbon/human/death_vr.dm @@ -1,6 +1,7 @@ /mob/living/carbon/human/gib() //Drop the NIF, they're expensive, why not recover them? + release_vore_contents(silent = TRUE) if(nif) var/obj/item/device/nif/deadnif = nif //Unimplant removes the reference on the mob if(!deadnif.gib_nodrop)