From 3f4f4d457954bc7eca6391bd7db23e59fed28b9a Mon Sep 17 00:00:00 2001 From: cosmosgc Date: Sat, 18 Jan 2025 16:54:38 -0300 Subject: [PATCH] Mostra vida no crew Monitoring --- .../CrewMonitoring/CrewMonitoringWindow.xaml.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs index 0709921ae8b..e677bbad3c7 100644 --- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs +++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs @@ -237,6 +237,16 @@ private void PopulateDepartmentList(IEnumerable departmentSens statusContainer.AddChild(statusIcon); + // Health Value + var healthLabel = new Label() + { + Text = sensor.TotalDamage.ToString(), + HorizontalExpand = true, + ClipText = true, + }; + + statusContainer.AddChild(healthLabel); + // User name var nameLabel = new Label() {