From 84fff930c26897120baf66f9dbf91400e6e6e585 Mon Sep 17 00:00:00 2001 From: beck-thompson <107373427+beck-thompson@users.noreply.github.com> Date: Sat, 24 Feb 2024 18:29:16 -0800 Subject: [PATCH] Fixed Fire Extinguisher safety range (#25534) --- Content.Server/Extinguisher/FireExtinguisherSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.52.0