From 1abd1f615fb0e8423855c1cea9c858db01abad31 Mon Sep 17 00:00:00 2001 From: exincore Date: Fri, 1 Mar 2024 06:49:49 -0600 Subject: [PATCH] feat(chameleon): Chameleon verb only shows to the wearer (#25746) --- Content.Server/Clothing/Systems/ChameleonClothingSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs index a087ebdd49..6fbfd9f367 100644 --- a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs @@ -33,7 +33,7 @@ public sealed class ChameleonClothingSystem : SharedChameleonClothingSystem private void OnVerb(EntityUid uid, ChameleonClothingComponent component, GetVerbsEvent args) { - if (!args.CanAccess || !args.CanInteract) + if (!args.CanAccess || !args.CanInteract || component.User != args.User) return; args.Verbs.Add(new InteractionVerb() -- 2.51.2