fixes water backpacks not being able to have their miser be toggled by clicking on it while it's on your back (#23288)

This commit is contained in:
GDN
2023-11-24 15:37:49 +00:00
committed by GitHub
parent 60ee7e11b7
commit 18bc75363f
@@ -75,9 +75,9 @@
QDEL_NULL(noz)
return ..()
/obj/item/watertank/attack_hand(mob/user as mob)
if(src.loc == user)
ui_action_click()
/obj/item/watertank/attack_hand(mob/user)
if(loc == user)
toggle_mister(user)
return
..()