Fix random test fail in DeleteAllThenGhost (#32753)

It's simple. We kill the heisentest
This commit is contained in:
Errant 2024-10-11 21:17:01 +02:00 committed by deltanedas
parent f2c79abb0a
commit e11d85131c
1 changed files with 7 additions and 1 deletions

View File

@ -478,7 +478,13 @@ public abstract class SharedRoleSystem : EntitySystem
var exclusiveAntag = false;
foreach (var role in mind.MindRoles)
{
var roleComp = Comp<MindRoleComponent>(role);
if (!TryComp<MindRoleComponent>(role, out var roleComp))
{
//If this ever shows up outside of an integration test, then we need to look into this further.
Log.Warning($"Mind Role Entity {role} does not have MindRoleComponent!");
continue;
}
if (roleComp.Antag || exclusiveAntag)
antagonist = true;
if (roleComp.ExclusiveAntag)