diff --git a/Source/Game/Entities/Creature/Creature.cs b/Source/Game/Entities/Creature/Creature.cs index bad4c63b3..14c98a4eb 100644 --- a/Source/Game/Entities/Creature/Creature.cs +++ b/Source/Game/Entities/Creature/Creature.cs @@ -2138,7 +2138,12 @@ namespace Game.Entities target = GetThreatManager().GetAnyTarget(); if (target == null) target = GetCombatManager().GetAnyTarget(); - Cypher.Assert(target != null, $"Creature {GetEntry()} ({GetName()}) is engaged without threat list"); + + if (target == null) + { + Log.outError(LogFilter.Unit, $"Creature {GetEntry()} ({GetName()}) is engaged without threat list"); + return; + } var u_do = new CallOfHelpCreatureInRangeDo(this, target, radius); var worker = new CreatureWorker(this, u_do);