Fixes watertank mister GC (#17258)

This commit is contained in:
Qwertytoforty
2021-12-20 21:23:51 +01:00
committed by GitHub
parent 3732b1d731
commit bc3c8c25bc
@@ -22,6 +22,10 @@
create_reagents(volume)
noz = make_noz()
/obj/item/watertank/Destroy()
QDEL_NULL(noz)
return ..()
/obj/item/watertank/ui_action_click()
toggle_mister()
@@ -132,6 +136,10 @@
loc = tank
return
/obj/item/reagent_containers/spray/mister/Destroy()
tank = null
return ..()
/obj/item/reagent_containers/spray/mister/dropped(mob/user as mob)
..()
to_chat(user, "<span class='notice'>The mister snaps back onto the watertank.</span>")