summaryrefslogtreecommitdiffstats
path: root/src/BlockID.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/BlockID.h')
-rw-r--r--src/BlockID.h5
1 files changed, 4 insertions, 1 deletions
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,