summaryrefslogtreecommitdiffstats
path: root/src/BlockID.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2019-08-05 01:43:54 +0200
committerMattes D <github@xoft.cz>2019-08-05 21:42:54 +0200
commit8212f163b5429973cc63eb4c8b0073b342f09914 (patch)
treec4c332bdef7c31063f256e4564ff73681d53c2c5 /src/BlockID.h
parentBlockTypeRegistry: Added hint manipulation (diff)
downloadcuberite-8212f163b5429973cc63eb4c8b0073b342f09914.tar
cuberite-8212f163b5429973cc63eb4c8b0073b342f09914.tar.gz
cuberite-8212f163b5429973cc63eb4c8b0073b342f09914.tar.bz2
cuberite-8212f163b5429973cc63eb4c8b0073b342f09914.tar.lz
cuberite-8212f163b5429973cc63eb4c8b0073b342f09914.tar.xz
cuberite-8212f163b5429973cc63eb4c8b0073b342f09914.tar.zst
cuberite-8212f163b5429973cc63eb4c8b0073b342f09914.zip
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,