Skip to content

Commit

Permalink
Changes the suit sensors hotkey (ParadiseSS13#23458)
Browse files Browse the repository at this point in the history
  • Loading branch information
vengeful910month3 authored Dec 13, 2023
1 parent 48c0bfd commit 518e732
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions code/modules/clothing/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -815,14 +815,14 @@
if(SUIT_SENSOR_TRACKING)
. += "Its vital tracker and tracking beacon appear to be enabled."
if(has_sensor == 1)
. += "<span class='info'>Alt-shift-click to toggle the sensors mode.</span>"
. += "<span class='info'>Alt-click to toggle the sensors mode.</span>"
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."
. += "<span class='info'>Alt-click to remove an accessory.</span>"
. += "<span class='info'>Alt-Shift-Click to remove an accessory.</span>"
. += "<span class='info'>Ctrl-Shift-Click to roll down this jumpsuit.</span>"


Expand Down Expand Up @@ -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))
Expand Down

0 comments on commit 518e732

Please sign in to comment.