From 2aa5d4d7c9c5bb32f6bdcf09f8aee479a97382ba Mon Sep 17 00:00:00 2001 From: Casey Date: Sun, 13 Nov 2022 15:44:42 -0500 Subject: [PATCH] Merge pull request #14052 from Heroman3003/box-ungurgle Makes contaminated boxes not fall apart --- code/modules/vore/eating/contaminate_vr.dm | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/code/modules/vore/eating/contaminate_vr.dm b/code/modules/vore/eating/contaminate_vr.dm index 10d852ee86..9321f2b2df 100644 --- a/code/modules/vore/eating/contaminate_vr.dm +++ b/code/modules/vore/eating/contaminate_vr.dm @@ -80,20 +80,6 @@ var/list/gurgled_overlays = list( else ..() -////////////// -// Special things that happen when wet -////////////// -/obj/item/weapon/storage/box/open(mob/user as mob) - if(gurgled) - to_chat(usr, "The soggy box falls apart in your hands.") - var/turf/T = get_turf(src) - for(var/obj/item/I in contents) - remove_from_storage(I, T) - new/obj/effect/decal/cleanable/molten_item(T) - qdel(src) - return - ..() - ////////////// // Special handling of gurgle_contaminate //////////////