From 8212f163b5429973cc63eb4c8b0073b342f09914 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Mon, 5 Aug 2019 01:43:54 +0200 Subject: Register vanilla blocks in BlockTypeRegistry. --- src/BlockID.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/BlockID.h') diff --git a/src/BlockID.h b/src/BlockID.h index 733155a50..226178699 100644 --- a/src/BlockID.h +++ b/src/BlockID.h @@ -172,7 +172,8 @@ enum ENUM_BLOCK_ID : BLOCKTYPE E_BLOCK_ACTIVATOR_RAIL = 157, E_BLOCK_DROPPER = 158, - E_BLOCK_STAINED_CLAY = 159, + E_BLOCK_STAINED_CLAY = 159, // Synonym to terracotta + E_BLOCK_TERRACOTTA = 159, // Synonym to stained clay E_BLOCK_STAINED_GLASS_PANE = 160, E_BLOCK_NEW_LEAVES = 161, // Acacia and Dark Oak IDs in Minecraft 1.7.x E_BLOCK_NEW_LOG = 162, @@ -274,6 +275,8 @@ enum ENUM_BLOCK_ID : BLOCKTYPE E_BLOCK_NUMBER_OF_TYPES = E_BLOCK_CONCRETE_POWDER + 1, ///< Number of individual (different) blocktypes E_BLOCK_MAX_TYPE_ID = E_BLOCK_NUMBER_OF_TYPES - 1, ///< Maximum BlockType number used + E_BLOCK_UNFINISHED = 254, // Special type used as a placeholder, signifying that the block lacks implementation + // Synonym or ID compatibility E_BLOCK_YELLOW_FLOWER = E_BLOCK_DANDELION, E_BLOCK_RED_ROSE = E_BLOCK_FLOWER, -- cgit v1.2.3