Fixed Leaves.getSpecies returning null on higher data values. Thanks to Wolvereness for the PR.
This commit is contained in:
parent
d36385d28f
commit
87ee353d4d
@ -38,7 +38,7 @@ public class Leaves extends MaterialData {
|
|||||||
* @return TreeSpecies of this leave
|
* @return TreeSpecies of this leave
|
||||||
*/
|
*/
|
||||||
public TreeSpecies getSpecies() {
|
public TreeSpecies getSpecies() {
|
||||||
return TreeSpecies.getByData(getData());
|
return TreeSpecies.getByData((byte) (getData() & 3));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user