From 9a01bf57db185407c0b2e20c21ecd92fdb2c97ce Mon Sep 17 00:00:00 2001 From: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Date: Sat, 8 Jun 2024 01:27:18 +0530 Subject: [PATCH] Fix wrench screentip typo for smart fridge (#83767) ## About The Pull Request - Fixes #83766 ## Changelog :cl: spellcheck: Corrected wrench contextual screentip typo for smart fridge /:cl: --------- Co-authored-by: Afevis --- code/modules/food_and_drinks/machinery/smartfridge.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/machinery/smartfridge.dm b/code/modules/food_and_drinks/machinery/smartfridge.dm index de458bb2187..8a6b3258a0e 100644 --- a/code/modules/food_and_drinks/machinery/smartfridge.dm +++ b/code/modules/food_and_drinks/machinery/smartfridge.dm @@ -173,7 +173,7 @@ tool_tip_set = TRUE else if(held_item.tool_behaviour == TOOL_WRENCH) - context[SCREENTIP_CONTEXT_LMB] = "[anchored ? "Un" : ""]anchore" + context[SCREENTIP_CONTEXT_LMB] = "[anchored ? "Una" : "A"]nchor" tool_tip_set = TRUE return tool_tip_set ? CONTEXTUAL_SCREENTIP_SET : NONE