Fixed Fire Extinguisher safety range (#25534)

This commit is contained in:
beck-thompson
2024-02-24 18:29:16 -08:00
committed by GitHub
parent 431f0bd640
commit 84fff930c2

View File

@@ -93,7 +93,7 @@ public sealed class FireExtinguisherSystem : EntitySystem
private void OnGetInteractionVerbs(Entity<FireExtinguisherComponent> entity, ref GetVerbsEvent<InteractionVerb> args)
{
if (!args.CanInteract)
if (!args.CanAccess || !args.CanInteract)
return;
var user = args.User;