v0.9.3: fixed incorrect values being used for prep blink range

This commit is contained in:
Evan Debenham
2021-05-14 21:53:59 -04:00
parent 763979e31e
commit 0d6d2503da
@@ -84,10 +84,10 @@ public class Preparation extends Buff implements ActionIndicator.Action {
//1st index is prep level, 2nd is talent level //1st index is prep level, 2nd is talent level
private static final int[][] blinkRanges = new int[][]{ private static final int[][] blinkRanges = new int[][]{
{1, 2, 3, 4}, {1, 1, 2, 2},
{1, 3, 4, 6}, {2, 3, 4, 5},
{2, 4, 6, 8}, {3, 4, 6, 7},
{2, 5, 7, 10} {4, 6, 8, 10}
}; };
public int blinkDistance(){ public int blinkDistance(){