Skip to content

Commit

Permalink
bolded keybinds, added accessory keybind to helmets, clarified tactic…
Browse files Browse the repository at this point in the history
…ool helmet reskin bind (#27687)

Co-authored-by: Toastical <[email protected]>
  • Loading branch information
Toastical and Toastical authored Jan 6, 2025
1 parent 5515392 commit 53f8860
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions code/modules/clothing/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,7 @@
. = ..()
for(var/obj/item/clothing/head/hat as anything in attached_hats)
. += "\A [hat] is placed neatly on top."
. += "<span class='notice'><b>Alt-Shift-Click</b> to remove an accessory.</span>"

//when user attached a hat to H (another hat)
/obj/item/clothing/head/proc/on_attached(obj/item/clothing/head/H, mob/user as mob)
Expand Down Expand Up @@ -1102,15 +1103,15 @@
if(SUIT_SENSOR_TRACKING)
. += "Its vital tracker and tracking beacon appear to be enabled."
if(has_sensor == 1)
. += "<span class='notice'>Alt-click to toggle the sensors mode.</span>"
. += "<span class='notice'><b>Alt-Click</b> 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='notice'>Alt-Shift-Click to remove an accessory.</span>"
. += "<span class='notice'>Ctrl-Shift-Click to roll down this jumpsuit.</span>"
. += "<span class='notice'><b>Alt-Shift-Click</b> to remove an accessory.</span>"
. += "<span class='notice'><b>Ctrl-Shift-Click</b> to roll down this jumpsuit.</span>"


/obj/item/clothing/under/CtrlShiftClick(mob/living/carbon/human/user)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/clothing/spacesuits/plasmamen.dm
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@
/obj/item/clothing/head/helmet/space/plasmaman/tacticool/examine(mob/user)
. = ..()
if(!reskinned)
. += "<span class='notice'>You can <b>Alt-Click</b> to reskin it.</span>"
. += "<span class='notice'>You can <b>Alt-Click</b> to reskin it when held.</span>"

/obj/item/clothing/head/helmet/space/plasmaman/tacticool/AltClick(mob/user)
..()
Expand Down

0 comments on commit 53f8860

Please sign in to comment.