From 40fcbeb63c593352ab10def1ff7b675770f07479 Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Sun, 18 Feb 2024 11:52:32 -0500 Subject: [PATCH] [MIRROR] Changes the crystallizer wrench screentip to the correct button (#1015) * Changes the crystallizer wrench screentip to the correct button (#81516) ## About The Pull Request it says left click, that does nothing, you need to right click it to rotate ## Why It's Good For The Game correct ingame information ## Changelog :cl: fix: The crystallizer screentip for rotating it has been updated with the correct button /:cl: * Changes the crystallizer wrench screentip to the correct button --------- Co-authored-by: 1393F <59183821+1393F@users.noreply.github.com> --- .../machinery/components/gas_recipe_machines/crystallizer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm b/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm index 44695b61047..98915686749 100644 --- a/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm +++ b/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm @@ -55,7 +55,7 @@ if(TOOL_SCREWDRIVER) context[SCREENTIP_CONTEXT_LMB] = "[panel_open ? "Close" : "Open"] panel" if(TOOL_WRENCH) - context[SCREENTIP_CONTEXT_LMB] = "Rotate" + context[SCREENTIP_CONTEXT_RMB] = "Rotate" return CONTEXTUAL_SCREENTIP_SET /obj/machinery/atmospherics/components/binary/crystallizer/attackby(obj/item/I, mob/user, params)