fix keep traitor alive (#17912)

This commit is contained in:
crazybrain23
2023-07-09 20:21:23 +01:00
committed by GitHub
parent 7a63238487
commit eaaa1e8b69

View File

@@ -49,7 +49,7 @@ namespace Content.Server.Objectives.Conditions
{
var entityManager = IoCManager.Resolve<EntityManager>();
var mindSystem = entityManager.System<MindSystem>();
return _target == null || mindSystem.IsCharacterDeadIc(_target) ? 1f : 0f;
return _target == null || !mindSystem.IsCharacterDeadIc(_target) ? 1f : 0f;
}
}