mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-08 19:34:09 +01:00
Add missing JUNGLE TreeSpecies. Fixes BUKKIT-973
By: Celtic Minstrel <celtic.minstrel.ca@some.place>
This commit is contained in:
parent
99569c1767
commit
ce4d959ab2
1 changed files with 5 additions and 1 deletions
|
@ -20,7 +20,11 @@ public enum TreeSpecies {
|
|||
/**
|
||||
* Represents birches.
|
||||
*/
|
||||
BIRCH(0x2);
|
||||
BIRCH(0x2),
|
||||
/**
|
||||
* Represents jungle trees.
|
||||
*/
|
||||
JUNGLE(0x3);
|
||||
|
||||
private final byte data;
|
||||
private final static Map<Byte, TreeSpecies> BY_DATA = Maps.newHashMap();
|
||||
|
|
Loading…
Reference in a new issue