diff --git a/Content.Server/GameObjects/Components/Interactable/Tools/WelderComponent.cs b/Content.Server/GameObjects/Components/Interactable/Tools/WelderComponent.cs index a7de418d8f..0168ad739a 100644 --- a/Content.Server/GameObjects/Components/Interactable/Tools/WelderComponent.cs +++ b/Content.Server/GameObjects/Components/Interactable/Tools/WelderComponent.cs @@ -161,6 +161,7 @@ namespace Content.Server.GameObjects.Components.Interactable.Tools message.AddText("Fuel: "); message.PushColor(Fuel < FuelCapacity / 4f ? Color.DarkOrange : Color.Orange); message.AddText($"{Math.Round(Fuel)}/{FuelCapacity}"); + message.AddText("."); message.Pop(); } } diff --git a/Content.Server/GameObjects/Components/Power/PowerDevice.cs b/Content.Server/GameObjects/Components/Power/PowerDevice.cs index f93930cc6c..33d0c5c054 100644 --- a/Content.Server/GameObjects/Components/Power/PowerDevice.cs +++ b/Content.Server/GameObjects/Components/Power/PowerDevice.cs @@ -182,7 +182,7 @@ namespace Content.Server.GameObjects.Components.Power { if (!Powered) { - message.AddText("The device is not powered"); + message.AddText("The device is not powered."); } } diff --git a/Content.Server/GameObjects/EntitySystems/Click/ExamineSystem.cs b/Content.Server/GameObjects/EntitySystems/Click/ExamineSystem.cs index c3b6dd967a..7b0cfd0696 100644 --- a/Content.Server/GameObjects/EntitySystems/Click/ExamineSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/Click/ExamineSystem.cs @@ -62,20 +62,19 @@ namespace Content.Server.GameObjects.EntitySystems message.PushColor(Color.DarkGray); - var subMessage = new FormattedMessage(); //Add component statuses from components that report one foreach (var examineComponents in entity.GetAllComponents()) { + var subMessage = new FormattedMessage(); examineComponents.Examine(subMessage); if (subMessage.Tags.Count == 0) continue; if (doNewline) - { message.AddText("\n"); - doNewline = false; - } + message.AddMessage(subMessage); + doNewline = true; } message.Pop();