Merge pull request #5254 from CHOMPStation2/upstream-merge-14052

[MIRROR] Makes contaminated boxes not fall apart
This commit is contained in:
Nadyr
2022-11-13 16:36:14 -05:00
committed by GitHub
@@ -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
//////////////