mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-09 08:32:07 -07:00
added MaterialData classes and associated Enums for COAL, CROPS, LOG, LEAVES, STEP, and DOUBLE_STEP
By: sunkid <sunkid@iminurnetz.com>
This commit is contained in:
@@ -29,8 +29,8 @@ public enum Material {
|
||||
GOLD_ORE(14),
|
||||
IRON_ORE(15),
|
||||
COAL_ORE(16),
|
||||
LOG(17),
|
||||
LEAVES(18),
|
||||
LOG(17, Tree.class),
|
||||
LEAVES(18, Tree.class),
|
||||
SPONGE(19),
|
||||
GLASS(20),
|
||||
LAPIS_ORE(21),
|
||||
@@ -46,8 +46,8 @@ public enum Material {
|
||||
RED_MUSHROOM(40),
|
||||
GOLD_BLOCK(41),
|
||||
IRON_BLOCK(42),
|
||||
DOUBLE_STEP(43),
|
||||
STEP(44),
|
||||
DOUBLE_STEP(43, Step.class),
|
||||
STEP(44, Step.class),
|
||||
BRICK(45),
|
||||
TNT(46),
|
||||
BOOKSHELF(47),
|
||||
@@ -62,7 +62,7 @@ public enum Material {
|
||||
DIAMOND_ORE(56),
|
||||
DIAMOND_BLOCK(57),
|
||||
WORKBENCH(58),
|
||||
CROPS(59),
|
||||
CROPS(59, Crops.class),
|
||||
SOIL(60),
|
||||
FURNACE(61),
|
||||
BURNING_FURNACE(62),
|
||||
@@ -106,7 +106,7 @@ public enum Material {
|
||||
APPLE(260, 1),
|
||||
BOW(261, 1),
|
||||
ARROW(262),
|
||||
COAL(263),
|
||||
COAL(263, Coal.class),
|
||||
DIAMOND(264),
|
||||
IRON_INGOT(265),
|
||||
GOLD_INGOT(266),
|
||||
|
Reference in New Issue
Block a user