v3.1.0: fixed exiles having more DR than intended and aggroing as champs

This commit is contained in:
Evan Debenham
2025-05-12 13:32:58 -04:00
parent 08f0b8d669
commit e51d0f5f62
2 changed files with 4 additions and 2 deletions

View File

@@ -104,7 +104,9 @@ public abstract class ChampionEnemy extends Buff {
if (Dungeon.mobsToChampion <= 0 && Dungeon.isChallenged(Challenges.CHAMPION_ENEMIES)) {
Buff.affect(m, buffCls);
m.state = m.WANDERING;
if (m.state != m.PASSIVE) {
m.state = m.WANDERING;
}
}
}

View File

@@ -67,7 +67,7 @@ public class GnollExile extends Gnoll {
@Override
public int drRoll() {
return super.drRoll() + Random.NormalIntRange(0, 3);
return super.drRoll() + Random.NormalIntRange(0, 1);
}
@Override