From 2d19c914b9d413ce1657b86fb5719b1fc281e9f6 Mon Sep 17 00:00:00 2001 From: deltanedas <@deltanedas:kde.org> Date: Thu, 9 Jan 2025 18:04:03 +0000 Subject: [PATCH] fix --- Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs index 0aee5410ac9..8ed6fc63e40 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs @@ -187,7 +187,7 @@ public void Populate(HealthAnalyzerScannedUserMessage msg) // Alerts - var unborgable = _unborgable.IsUnborgable(target.Value); // DeltaV + var unborgable = _unborgable.IsUnborgable(_target.Value); // DeltaV var showAlerts = msg.Unrevivable == true || msg.Bleeding == true || unborgable; AlertsDivider.Visible = showAlerts;