File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -191,8 +191,8 @@ private static List<IBattleChara> GetAllHostileTargets()
191
191
var deathAll = DataCenter . AllTargets ? . GetDeath ( ) . ToList ( ) ?? new List < IBattleChara > ( ) ;
192
192
var deathNPC = DataCenter . FriendlyNPCMembers ? . GetDeath ( ) . ToList ( ) ?? new List < IBattleChara > ( ) ;
193
193
var deathAllianceMembers = DataCenter . AllianceMembers ? . GetDeath ( ) . ToList ( ) ?? new List < IBattleChara > ( ) ;
194
- var deathAllianceHealers = new List < IBattleChara > ( ) ;
195
- var deathAllianceSupports = new List < IBattleChara > ( ) ;
194
+ var deathAllianceHealers = new List < IBattleChara > ( deathParty ) ;
195
+ var deathAllianceSupports = new List < IBattleChara > ( deathParty ) ;
196
196
197
197
if ( DataCenter . AllianceMembers != null )
198
198
{
@@ -255,6 +255,7 @@ private static List<IBattleChara> GetAllHostileTargets()
255
255
return null ;
256
256
}
257
257
258
+
258
259
private static IBattleChara ? GetPriorityDeathTarget ( List < IBattleChara > validRaiseTargets , RaiseType raiseType = RaiseType . PartyOnly )
259
260
{
260
261
if ( validRaiseTargets . Count == 0 ) return null ;
You can’t perform that action at this time.
0 commit comments