From 66c0bdc8faaecfc360b1f2658e01946e91d595f2 Mon Sep 17 00:00:00 2001 From: Nemanja <98561806+EmoGarbage404@users.noreply.github.com> Date: Wed, 20 Aug 2025 15:25:53 -0400 Subject: [PATCH] Remove BodyComponent check from MobPrice test (#39786) --- Content.IntegrationTests/Tests/CargoTest.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index 3b5afaa3af..80d2cdb3b8 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -5,7 +5,6 @@ using Content.Server.Cargo.Components; using Content.Server.Cargo.Systems; using Content.Server.Nutrition.Components; using Content.Server.Nutrition.EntitySystems; -using Content.Shared.Body.Components; using Content.Shared.Cargo.Prototypes; using Content.Shared.Mobs.Components; using Content.Shared.Prototypes; @@ -270,7 +269,6 @@ public sealed class CargoTest { foreach (var (proto, comp) in pair.GetPrototypesWithComponent()) { - Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no BodyComponent!"); Assert.That(proto.TryGetComponent(out _, componentFactory), $"Found MobPriceComponent on {proto.ID}, but no MobStateComponent!"); } });