From a7470a1d88212fe32c283caa683a40efc5431b6e Mon Sep 17 00:00:00 2001 From: Alan Date: Tue, 7 Oct 2025 13:46:38 -0400 Subject: [PATCH] Change keybind to reskin tacticool envirohelm. Fixes #27342 (#30552) --- code/modules/clothing/spacesuits/plasmamen.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/plasmamen.dm b/code/modules/clothing/spacesuits/plasmamen.dm index 3b1ef103d98..eb7abd8f4e5 100644 --- a/code/modules/clothing/spacesuits/plasmamen.dm +++ b/code/modules/clothing/spacesuits/plasmamen.dm @@ -282,9 +282,9 @@ /obj/item/clothing/head/helmet/space/plasmaman/tacticool/examine(mob/user) . = ..() if(!reskinned) - . += "You can Alt-Click to reskin it when held." + . += "You can Ctrl-Shift-Click to reskin it when held." -/obj/item/clothing/head/helmet/space/plasmaman/tacticool/AltClick(mob/user) +/obj/item/clothing/head/helmet/space/plasmaman/tacticool/CtrlShiftClick(mob/user) ..() if(HAS_TRAIT(user, TRAIT_HANDS_BLOCKED)) to_chat(user, "You can't do that right now!")