13
0
geforkt von Mirrors/Paper

SPIGOT-918: Add constructor for DyeColor to Dye

By: t7seven7t <t7seven7t@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2015-08-11 10:10:17 -08:00
Ursprung 5ec19def07
Commit 5232a2cbba
2 geänderte Dateien mit 8 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -44,6 +44,13 @@ public class Dye extends MaterialData implements Colorable {
super(type, data); super(type, data);
} }
/**
* @param color color of the dye
*/
public Dye(final DyeColor color) {
super(Material.INK_SACK, color.getDyeData());
}
/** /**
* Gets the current color of this dye * Gets the current color of this dye
* *

Datei anzeigen

@ -57,6 +57,7 @@ public class DyeColorTest {
@Test @Test
public void getDyeDyeColor() { public void getDyeDyeColor() {
testColorable(new Dye(Material.INK_SACK, dye.getDyeData())); testColorable(new Dye(Material.INK_SACK, dye.getDyeData()));
testColorable(new Dye(dye));
} }
@Test @Test