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

View File

@ -84,10 +84,10 @@ public class Preparation extends Buff implements ActionIndicator.Action {
//1st index is prep level, 2nd is talent level
private static final int[][] blinkRanges = new int[][]{
{1, 2, 3, 4},
{1, 3, 4, 6},
{2, 4, 6, 8},
{2, 5, 7, 10}
{1, 1, 2, 2},
{2, 3, 4, 5},
{3, 4, 6, 7},
{4, 6, 8, 10}
};
public int blinkDistance(){