From 302d9555e2221865c950cbbd264cf7bb44297ef2 Mon Sep 17 00:00:00 2001 From: Francesco Date: Tue, 11 Oct 2022 09:28:47 +0200 Subject: [PATCH] Fixes conveyor belts enabling collisions of opened blast doors when turning on (#11727) --- Content.Server/Physics/Controllers/ConveyorController.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); + } } } }