]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix: Register OnRequestMovePulledObject under the right system (#38484)
authorPerry Fraser <perryprog@users.noreply.github.com>
Wed, 9 Jul 2025 03:44:21 +0000 (23:44 -0400)
committerGitHub <noreply@github.com>
Wed, 9 Jul 2025 03:44:21 +0000 (05:44 +0200)
* fix: Register OnRequestMovePulledObject under the right system

* nukeops test flake

Content.Server/Movement/Systems/PullController.cs

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