diff --git a/Content.Server/Throwing/ThrowHelper.cs b/Content.Server/Throwing/ThrowHelper.cs index e5081d6364..7db9be2c96 100644 --- a/Content.Server/Throwing/ThrowHelper.cs +++ b/Content.Server/Throwing/ThrowHelper.cs @@ -41,15 +41,9 @@ namespace Content.Server.Throwing return; } - if (physicsComponent.BodyType == BodyType.Static) + if (physicsComponent.BodyType != BodyType.Dynamic) { - Logger.Warning("Tried to throw entity {entity} but can't throw static bodies!"); - return; - } - - if (entities.HasComponent(entity)) - { - Logger.Warning("Throwing not supported for mobs!"); + Logger.Warning($"Tried to throw entity {entities.ToPrettyString(entity)} but can't throw {physicsComponent.BodyType} bodies!"); return; }