v3.1.0: fixed exiles having more DR than intended and aggroing as champs
This commit is contained in:
+3
-1
@@ -104,7 +104,9 @@ public abstract class ChampionEnemy extends Buff {
|
|||||||
|
|
||||||
if (Dungeon.mobsToChampion <= 0 && Dungeon.isChallenged(Challenges.CHAMPION_ENEMIES)) {
|
if (Dungeon.mobsToChampion <= 0 && Dungeon.isChallenged(Challenges.CHAMPION_ENEMIES)) {
|
||||||
Buff.affect(m, buffCls);
|
Buff.affect(m, buffCls);
|
||||||
m.state = m.WANDERING;
|
if (m.state != m.PASSIVE) {
|
||||||
|
m.state = m.WANDERING;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -67,7 +67,7 @@ public class GnollExile extends Gnoll {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int drRoll() {
|
public int drRoll() {
|
||||||
return super.drRoll() + Random.NormalIntRange(0, 3);
|
return super.drRoll() + Random.NormalIntRange(0, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user