From 4a7790cd72d044efe6ab31f09d9ff0de642bd7ae Mon Sep 17 00:00:00 2001 From: DmitriyMX Date: Wed, 6 Feb 2019 17:20:43 +0300 Subject: [PATCH] add missing blocks --- .../java/mc/core/world/block/BlockType.java | 47 +++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/core/src/main/java/mc/core/world/block/BlockType.java b/core/src/main/java/mc/core/world/block/BlockType.java index 2eecead..e6a7c6e 100644 --- a/core/src/main/java/mc/core/world/block/BlockType.java +++ b/core/src/main/java/mc/core/world/block/BlockType.java @@ -48,6 +48,12 @@ public enum BlockType { FARMLAND_7(60, 7), COBBLESTONE(4, 0), + COBBLESTONE_STRAIRS(67, 0), + COBBLESTONE_STRAIRS_1(67, 1), + COBBLESTONE_STRAIRS_2(67, 2), + COBBLESTONE_STRAIRS_3(67, 3), + COBBLESTONE_WALL(139, 0), + BEDROCK(7, 0), /** Water, flowing, Level 7 (Source) */ @@ -246,6 +252,12 @@ public enum BlockType { DOOR_UP_OAK_15(64, 15), FENCE_OAK(85, 0), + FENCE_OAK_DARK(191, 0), + + SLAB_WOOD_OAK_DARK(126, 5), + SLAB_13(126, 13), + + SIGN_WALL_MOUNTED(68, 5), // Decay after Tree Update LEAVES_OAK (18, 0), @@ -287,6 +299,7 @@ public enum BlockType { COBWEB(30, 0), TALLGRASS(31, 1), + FERN(31, 2), DANDELION(37, 0), FLOWER_POPPY (38, 0), @@ -399,7 +412,20 @@ public enum BlockType { PUMPKIN_NORTH(86, 2), PUMPKIN_EAST (86, 3), + TRAPDOOR_WOODEN(96, 0), + TRAPDOOR_WOODEN_1(96, 1), + TRAPDOOR_WOODEN_2(96, 2), + TRAPDOOR_WOODEN_3(96, 3), + + STONE_SLAB(44, 0), + STONE_SLAB_5(44, 5), STONE_MONSTER_EGG(97, 0), + STONE_BRICKS(98, 0), + STONE_BRICKS_3(98, 3), + STONE_BRICK_STAIRS(109, 0), + STONE_BRICK_STAIRS_1(109, 1), + STONE_BRICK_STAIRS_2(109, 2), + STONE_BRICK_STAIRS_3(109, 3), GLASS_PANE(102, 0), @@ -479,6 +505,27 @@ public enum BlockType { /** Potatoes (Age 7) */ POTATOES_7(142, 7), + REDSTONE_LAMP(123, 0), + REDSTONE_LAMP_ACTIVE(124, 0), + REDSTONE_BLOCK(152, 0), + + CARPET_WHITE(171, 0), + CARPET_ORANGE(171, 1), + CARPET_MAGENTA(171, 2), + CARPET_LIGHTBLUE(171, 3), + CARPET_YELLOW(171, 4), + CARPET_LIME(171, 5), + CARPET_PINK(171, 6), + CARPET_GRAY(171, 7), + CARPET_LIGHTGRAY(171, 8), + CARPET_CYAN(171, 9), + CARPET_PURPLE(171, 10), + CARPET_BLUE(171, 11), + CARPET_BROWN(171, 12), + CARPET_GREEN(171, 13), + CARPET_RED(171, 14), + CARPET_BLACK(171, 15), + /** Beetroot (Age 0) */ BEETROOT (207, 0), /** Beetroot (Age 1) */