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;