From 8a70cb31eb59cd0ab708e5b9ef1316af7a099c8b Mon Sep 17 00:00:00 2001 From: Heroman Date: Mon, 7 Nov 2022 15:02:00 +1000 Subject: [PATCH] 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 d82ae4bcd4..19c7029c2b 100644 --- a/code/modules/vore/eating/contaminate_vr.dm +++ b/code/modules/vore/eating/contaminate_vr.dm @@ -78,20 +78,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 //////////////