From: exincore Date: Fri, 1 Mar 2024 12:49:49 +0000 (-0600) Subject: feat(chameleon): Chameleon verb only shows to the wearer (#25746) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=1abd1f615fb0e8423855c1cea9c858db01abad31;p=space-station-14.git feat(chameleon): Chameleon verb only shows to the wearer (#25746) --- 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()