Fix Wood(plank) and add Sandstone MaterialData; addresses BUKKIT-1384
By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
parent
e2137d9470
commit
f5c68c57d0
3 changed files with 112 additions and 2 deletions
|
@ -23,7 +23,7 @@ public enum Material {
|
|||
GRASS(2),
|
||||
DIRT(3),
|
||||
COBBLESTONE(4),
|
||||
WOOD(5),
|
||||
WOOD(5, Tree.class),
|
||||
SAPLING(6, Tree.class),
|
||||
BEDROCK(7),
|
||||
WATER(8, MaterialData.class),
|
||||
|
@ -42,7 +42,7 @@ public enum Material {
|
|||
LAPIS_ORE(21),
|
||||
LAPIS_BLOCK(22),
|
||||
DISPENSER(23, Dispenser.class),
|
||||
SANDSTONE(24),
|
||||
SANDSTONE(24, Sandstone.class),
|
||||
NOTE_BLOCK(25),
|
||||
BED_BLOCK(26, Bed.class),
|
||||
POWERED_RAIL(27, PoweredRail.class),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue