diff --git a/Content.Shared/Damage/Systems/StaminaSystem.cs b/Content.Shared/Damage/Systems/StaminaSystem.cs index 44474623a5..31abbf039c 100644 --- a/Content.Shared/Damage/Systems/StaminaSystem.cs +++ b/Content.Shared/Damage/Systems/StaminaSystem.cs @@ -249,8 +249,9 @@ public sealed partial class StaminaSystem : EntitySystem /// public bool TryTakeStamina(EntityUid uid, float value, StaminaComponent? component = null, EntityUid? source = null, EntityUid? with = null) { + // Something that has no Stamina component automatically passes stamina checks if (!Resolve(uid, ref component, false)) - return false; + return true; var oldStam = component.StaminaDamage;