Makes contaminated boxes not fall apart

This commit is contained in:
Heroman
2022-11-07 15:02:00 +10:00
parent d45fa8b492
commit 8a70cb31eb
@@ -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
//////////////