Merge pull request #14052 from Heroman3003/box-ungurgle

Makes contaminated boxes not fall apart
This commit is contained in:
Casey
2022-11-13 20:45:36 +00:00
committed by CHOMPStation2
parent 8c16cf9e16
commit 2aa5d4d7c9
@@ -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
//////////////