v0.9.1b: renamed DM-300's new falling rock buff to fix save conflicts

This commit is contained in:
Evan Debenham 2020-12-28 19:47:13 -05:00
parent 9060348d30
commit 6d93b84efb

View File

@ -407,7 +407,7 @@ public class NewDM300 extends Mob {
pos++; pos++;
} }
} }
Buff.append(this, FallingRocks.class, Math.min(target.cooldown(), 3*TICK)).setRockPositions(rockCells); Buff.append(this, FallingRockBuff.class, Math.min(target.cooldown(), 3*TICK)).setRockPositions(rockCells);
} }
@ -600,7 +600,7 @@ public class NewDM300 extends Mob {
resistances.add(Slow.class); resistances.add(Slow.class);
} }
public static class FallingRocks extends FlavourBuff { public static class FallingRockBuff extends FlavourBuff {
private int[] rockPositions; private int[] rockPositions;
private ArrayList<Emitter> rockEmitters = new ArrayList<>(); private ArrayList<Emitter> rockEmitters = new ArrayList<>();