This commit is contained in:
Vanessa 2026-06-29 10:21:38 -05:00
parent 448b755b75
commit 5ed135c796
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ public abstract class SharedEntityStorageSystem : EntitySystem
public bool CanOpen(EntityUid user, EntityUid target, bool silent = false, EntityStorageComponent? component = null)
{
if (!Resolve(target, ref component))
if (!Resolve(target, ref component, false)) // DeltaV - Prevent HTNOperators from failing tests
return false;
if (!HasComp<HandsComponent>(user))