Force stop pulling when fall asleep (#31893)

* break pull at sleep

* TryStopPull without user

---------

Co-authored-by: YourUsername <you@example.com>
This commit is contained in:
godisdeadLOL
2024-09-07 02:30:24 +03:00
committed by GitHub
parent c7077bb599
commit 44cf3268c1

View File

@@ -188,7 +188,7 @@ public sealed class PullingSystem : EntitySystem
if (EntityManager.TryGetComponent(args.BlockingEntity, out PullableComponent? comp))
{
TryStopPull(args.BlockingEntity, comp, uid);
TryStopPull(args.BlockingEntity, comp);
}
}