From 547e196571d41710ebb6d4f8e05f08f9b84232cf Mon Sep 17 00:00:00 2001 From: Whatstone Date: Wed, 16 Oct 2024 11:42:25 -0400 Subject: [PATCH] Log for tests --- Content.IntegrationTests/Tests/EntityTest.cs | 1 + Content.Shared/Cargo/Components/StackPriceComponent.cs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 7a57cb6b292..d0c4f67398b 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -104,6 +104,7 @@ await server.WaitPost(() => .ToList(); foreach (var protoId in protoIds) { + Logger.Info($"Spawning proto {protoId}"); entityMan.SpawnEntity(protoId, map.GridCoords); } }); diff --git a/Content.Shared/Cargo/Components/StackPriceComponent.cs b/Content.Shared/Cargo/Components/StackPriceComponent.cs index 4f36bafdf8c..a0af3c6d31b 100644 --- a/Content.Shared/Cargo/Components/StackPriceComponent.cs +++ b/Content.Shared/Cargo/Components/StackPriceComponent.cs @@ -11,8 +11,9 @@ public sealed partial class StackPriceComponent : Component /// [DataField("price", required: true)] public double Price; + /// - /// The price a full stack of this object sells for from a vendor. + /// Frontier: The price a full stack of this object sells for from a vendor. /// [DataField] public double VendPrice;