From 518e732f23912ff37b76693b02c743827e4a52dc Mon Sep 17 00:00:00 2001
From: vengeful910month3 <76863749+vengeful910month3@users.noreply.github.com>
Date: Thu, 14 Dec 2023 03:33:34 +1100
Subject: [PATCH] Changes the suit sensors hotkey (#23458)
---
code/modules/clothing/clothing.dm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm
index 22b63fff7cb9..de356a7bd45e 100644
--- a/code/modules/clothing/clothing.dm
+++ b/code/modules/clothing/clothing.dm
@@ -357,7 +357,7 @@
if(H.w_uniform == src)
H.update_suit_sensors()
-/obj/item/clothing/under/AltShiftClick(mob/user)
+/obj/item/clothing/under/AltClick(mob/user)
set_sensors(user)
//Head
@@ -815,14 +815,14 @@
if(SUIT_SENSOR_TRACKING)
. += "Its vital tracker and tracking beacon appear to be enabled."
if(has_sensor == 1)
- . += "Alt-shift-click to toggle the sensors mode."
+ . += "Alt-click to toggle the sensors mode."
else
. += "This suit does not have any sensors."
if(length(accessories))
for(var/obj/item/clothing/accessory/A in accessories)
. += "\A [A] is attached to it."
- . += "Alt-click to remove an accessory."
+ . += "Alt-Shift-Click to remove an accessory."
. += "Ctrl-Shift-Click to roll down this jumpsuit."
@@ -856,7 +856,7 @@
body_parts_covered &= ~LOWER_TORSO
body_parts_covered &= ~ARMS
-/obj/item/clothing/under/AltClick(mob/user)
+/obj/item/clothing/under/AltShiftClick(mob/user)
if(user.stat || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || !Adjacent(user))
return
if(!length(accessories))