From 4d6235c807e8142a41bab86a4dc1a49fb1a078ca Mon Sep 17 00:00:00 2001 From: 12xx12 <44411062+12xx12@users.noreply.github.com> Date: Fri, 5 Mar 2021 14:04:48 +0100 Subject: Add Mushrooms to Generator and fixed up the roofed forest (#5134) * added generator for mushrooms and aded them to the biomes * removed unused variable * added nEwlY uDocUmEnTeD aPi sYmbOls... --- src/BlockType.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/BlockType.h') diff --git a/src/BlockType.h b/src/BlockType.h index 4db75b252..f98d9db82 100644 --- a/src/BlockType.h +++ b/src/BlockType.h @@ -712,6 +712,21 @@ enum ENUM_BLOCK_META : NIBBLETYPE E_META_LEAVES_BIRCH_CHECK_DECAY = 10, E_META_LEAVES_JUNGLE_CHECK_DECAY = 11, + // E_BLOCK_MUSHROOM metas: + E_META_MUSHROOM_ALL_SIDES = 0, + E_META_MUSHROOM_NORTH_WEST = 1, + E_META_MUSHROOM_NORTH = 2, + E_META_MUSHROOM_NORTH_EAST = 3, + E_META_MUSHROOM_WEST = 4, + E_META_MUSHROOM_CENTER = 5, + E_META_MUSHROOM_EAST = 6, + E_META_MUSHROOM_SOUTH_WEST = 7, + E_META_MUSHROOM_SOUTH = 8, + E_META_MUSHROOM_SOUTH_EAST = 9, + E_META_MUSHROOM_STEM = 10, + E_META_MUSHROOM_CAP = 14, + E_META_MUSHROOM_FULL_STEM = 15, + // E_BLOCK_LEAVES meta cont. (Block ID 161): E_META_NEWLEAVES_ACACIA = 0, E_META_NEWLEAVES_DARK_OAK = 1, -- cgit v1.2.3