From 38fb77797aac2fdfcae2f404763a35e0ae338497 Mon Sep 17 00:00:00 2001 From: Rinary Date: Sun, 13 Oct 2024 17:23:43 +0300 Subject: [PATCH] fix --- Content.Shared/Mobs/Systems/MobThresholdSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs index eeaecc24d80..43d78eec4d7 100644 --- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs +++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs @@ -168,7 +168,7 @@ public bool TryGetIncapThreshold(EntityUid target, [NotNullWhen(true)] out Fixed MobThresholdsComponent? thresholdComponent = null) { threshold = null; - if (!Resolve(target, ref thresholdComponent)) + if (!Resolve(target, ref thresholdComponent, false)) return false; return TryGetThresholdForState(target, MobState.Critical, out threshold, thresholdComponent)