fix: Register OnRequestMovePulledObject under the right system (#38484)

* fix: Register OnRequestMovePulledObject under the right system

* nukeops test flake
This commit is contained in:
Perry Fraser
2025-07-08 23:44:21 -04:00
committed by GitHub
parent c802b8bbb2
commit 871860208c

View File

@@ -85,7 +85,7 @@ public sealed class PullController : VirtualController
{ {
CommandBinds.Builder CommandBinds.Builder
.Bind(ContentKeyFunctions.MovePulledObject, new PointerInputCmdHandler(OnRequestMovePulledObject)) .Bind(ContentKeyFunctions.MovePulledObject, new PointerInputCmdHandler(OnRequestMovePulledObject))
.Register<PullingSystem>(); .Register<PullController>();
_physicsQuery = GetEntityQuery<PhysicsComponent>(); _physicsQuery = GetEntityQuery<PhysicsComponent>();
_pullableQuery = GetEntityQuery<PullableComponent>(); _pullableQuery = GetEntityQuery<PullableComponent>();