From 72a5c9e3c7b960f4cc7791bcfd063befb20f72dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B8=D1=80=D0=BE=D1=82=D0=BA=D0=B0?= <114731039+ErdGinalD@users.noreply.github.com> Date: Fri, 24 May 2024 21:32:03 +0300 Subject: [PATCH] Now you need alt-shift-click to empty sprays (#25437) --- code/modules/reagents/reagent_containers/spray.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/reagent_containers/spray.dm b/code/modules/reagents/reagent_containers/spray.dm index 5745bbb9542..be196f847af 100644 --- a/code/modules/reagents/reagent_containers/spray.dm +++ b/code/modules/reagents/reagent_containers/spray.dm @@ -98,9 +98,9 @@ . = ..() if(get_dist(user, src) && user == loc) . += "[round(reagents.total_volume)] units left." - . += "Alt-Click to empty it." + . += "Alt-Shift-Click to empty it." -/obj/item/reagent_containers/spray/AltClick(mob/user) +/obj/item/reagent_containers/spray/AltShiftClick(mob/user) if(user.stat || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || !Adjacent(user)) return if(tgui_alert(user, "Are you sure you want to empty that?", "Empty Bottle", list("Yes", "No")) != "Yes")