From b097b06b72516d40c76b4c0cfc8a44af0120c633 Mon Sep 17 00:00:00 2001 From: variableundefined <40092670+variableundefined@users.noreply.github.com> Date: Sat, 13 Oct 2018 23:04:50 +0800 Subject: [PATCH] CtrlShiftClick for stack --- code/game/objects/items/stacks/stack.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index bd06be3282b..3c33d8f66a0 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -54,7 +54,7 @@ to_chat(user, "There are [amount] [singular_name]\s in the stack.") else to_chat(user, "There are [amount] [name]\s in the stack.") - to_chat(user,"Alt-click to take a custom amount.") + to_chat(user,"Ctrl-Shift-click to take a custom amount.") /obj/item/stack/proc/add(newamount) amount += newamount @@ -269,7 +269,7 @@ else ..() -/obj/item/stack/AltClick(mob/living/user) +/obj/item/stack/CtrlShiftClick(mob/living/user) if(!istype(user) || user.incapacitated()) to_chat(user, "You can't do that right now!") return