Fix prying error when opening locked airlocks (#27386)

It would try to pry the door and fail to resolve a prying component on the entity trying to open the door.
This commit is contained in:
ShadowCommander
2024-04-26 23:28:17 -07:00
committed by GitHub
parent 92f14648ac
commit 6eb681958b

View File

@@ -107,7 +107,7 @@ public sealed class PryingSystem : EntitySystem
{
BeforePryEvent canev;
if (comp != null || Resolve(user, ref comp))
if (comp != null || Resolve(user, ref comp, false))
{
canev = new BeforePryEvent(user, comp.PryPowered, comp.Force);
}