Fixed Leaves.getSpecies returning null on higher data values. Thanks to Wolvereness for the PR.

This commit is contained in:
Nathan Adams 2012-01-15 07:33:02 +00:00
parent d36385d28f
commit 87ee353d4d

View File

@ -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));
} }
/** /**