diff --git a/Content.Server/Physics/Controllers/ConveyorController.cs b/Content.Server/Physics/Controllers/ConveyorController.cs index e70eec6181..24ac06579d 100644 --- a/Content.Server/Physics/Controllers/ConveyorController.cs +++ b/Content.Server/Physics/Controllers/ConveyorController.cs @@ -153,7 +153,10 @@ namespace Content.Server.Physics.Controllers if (!bodyQuery.TryGetComponent(entity, out var physics)) continue; - _physics.WakeBody(physics); + if (physics.BodyType != BodyType.Static) + { + _physics.WakeBody(physics); + } } } }