v3.1.0: fixed exiles having more DR than intended and aggroing as champs
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user