diff --git a/Content.Server/GameObjects/Components/Conveyor/ConveyorComponent.cs b/Content.Server/GameObjects/Components/Conveyor/ConveyorComponent.cs index 7a9b3131f7..6593075814 100644 --- a/Content.Server/GameObjects/Components/Conveyor/ConveyorComponent.cs +++ b/Content.Server/GameObjects/Components/Conveyor/ConveyorComponent.cs @@ -155,7 +155,7 @@ namespace Content.Server.GameObjects.Components.Conveyor if (entity.TryGetComponent(out IPhysicsComponent? physics)) { var controller = physics.EnsureController(); - controller.Move(direction, _speed * frameTime); + controller.Move(direction, _speed); } } } diff --git a/Content.Shared/Physics/ConveyedController.cs b/Content.Shared/Physics/ConveyedController.cs index d3a08818ea..7665100dd9 100644 --- a/Content.Shared/Physics/ConveyedController.cs +++ b/Content.Shared/Physics/ConveyedController.cs @@ -1,8 +1,6 @@ #nullable enable using Content.Shared.GameObjects.Components.Movement; using Robust.Shared.GameObjects.Components; -using Robust.Shared.Interfaces.Physics; -using Robust.Shared.IoC; using Robust.Shared.Maths; using Robust.Shared.Physics; @@ -24,7 +22,7 @@ namespace Content.Shared.Physics return; } - LinearVelocity = velocityDirection * speed * 100; + LinearVelocity = velocityDirection * speed; } public override void UpdateAfterProcessing()