From 6a31b3dc8692d12db4460367dbc70ba738fce56c Mon Sep 17 00:00:00 2001 From: 1393F <59183821+1393F@users.noreply.github.com> Date: Sat, 9 May 2026 04:31:23 -0400 Subject: [PATCH] Fixes rotating the crystallizer (#95988) ## About The Pull Request broken by #95408 ## Why It's Good For The Game ## Changelog :cl: fix: The crystallizer can be rotated once again, on left click /:cl: --- .../machinery/components/gas_recipe_machines/crystallizer.dm | 5 ++++- 1 file changed, 4 insertions(+), 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 b48dbd53c0c..5f24e939746 100644 --- a/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm +++ b/code/modules/atmospherics/machinery/components/gas_recipe_machines/crystallizer.dm @@ -55,12 +55,15 @@ if(TOOL_SCREWDRIVER) context[SCREENTIP_CONTEXT_LMB] = "[panel_open ? "Close" : "Open"] panel" if(TOOL_WRENCH) - context[SCREENTIP_CONTEXT_RMB] = "Rotate" + context[SCREENTIP_CONTEXT_LMB] = "Rotate" return CONTEXTUAL_SCREENTIP_SET /obj/machinery/atmospherics/components/binary/crystallizer/screwdriver_act(mob/living/user, obj/item/tool) return on ? NONE : default_deconstruction_screwdriver(user, tool) +/obj/machinery/atmospherics/components/binary/crystallizer/wrench_act(mob/living/user, obj/item/tool) + return default_change_direction_wrench(user, tool) + /obj/machinery/atmospherics/components/binary/crystallizer/crowbar_act(mob/living/user, obj/item/tool) return crowbar_deconstruction_act(user, tool, internal.return_pressure())