Update unit test to reflect firework color fix. Fixes BUKKIT-3382
The ItemDye color-int array uses dye data values, not wool. By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
parent
e9c52a3ffc
commit
58090423c0
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ public class DyeColorsTest extends AbstractTestingBase {
|
||||||
@Test
|
@Test
|
||||||
public void checkFireworkColor() {
|
public void checkFireworkColor() {
|
||||||
Color color = dye.getFireworkColor();
|
Color color = dye.getFireworkColor();
|
||||||
int nmsColor = ItemDye.b[dye.getWoolData()];
|
int nmsColor = ItemDye.b[dye.getDyeData()];
|
||||||
assertThat(color, is(Color.fromRGB(nmsColor)));
|
assertThat(color, is(Color.fromRGB(nmsColor)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue