mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-08 16:12:18 -07:00
Fix Wood(plank) and add Sandstone MaterialData; addresses BUKKIT-1384
By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
@@ -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),
|
||||
|
Reference in New Issue
Block a user