From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Sun, 25 Feb 2024 02:29:16 +0000 (-0800) Subject: Fixed Fire Extinguisher safety range (#25534) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=84fff930c26897120baf66f9dbf91400e6e6e585;p=space-station-14.git Fixed Fire Extinguisher safety range (#25534) --- diff --git a/Content.Server/Extinguisher/FireExtinguisherSystem.cs b/Content.Server/Extinguisher/FireExtinguisherSystem.cs index 5adf067d9b..dfecd72398 100644 --- a/Content.Server/Extinguisher/FireExtinguisherSystem.cs +++ b/Content.Server/Extinguisher/FireExtinguisherSystem.cs @@ -93,7 +93,7 @@ public sealed class FireExtinguisherSystem : EntitySystem private void OnGetInteractionVerbs(Entity entity, ref GetVerbsEvent args) { - if (!args.CanInteract) + if (!args.CanAccess || !args.CanInteract) return; var user = args.User;