diff options
author | Mattes D <github@xoft.cz> | 2013-11-13 15:04:24 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2013-11-13 15:04:24 +0100 |
commit | f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10 (patch) | |
tree | cfdfe3e78b174f7d650edc7a4916f1eeafd76f92 | |
parent | Merge pull request #337 from nesco/master (diff) | |
parent | Bug correction (diff) | |
download | cuberite-f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10.tar cuberite-f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10.tar.gz cuberite-f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10.tar.bz2 cuberite-f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10.tar.lz cuberite-f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10.tar.xz cuberite-f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10.tar.zst cuberite-f0febc2fca3cd05a7e63d43b2f78d5d8e8462f10.zip |
Diffstat (limited to '')
-rw-r--r-- | source/BlockID.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/BlockID.h b/source/BlockID.h index 95b8ed9fc..f3cbc46d6 100644 --- a/source/BlockID.h +++ b/source/BlockID.h @@ -185,7 +185,7 @@ enum ENUM_BLOCK_ID // Keep these two as the last values, without a number - they will get their correct number assigned automagically by C++ // IsValidBlock() depends on this E_BLOCK_NUMBER_OF_TYPES, ///< Number of individual (different) blocktypes - E_BLOCK_MAX_TYPE_ID = E_BLOCK_NUMBER_OF_TYPES - 1 ///< Maximum BlockType number used + E_BLOCK_MAX_TYPE_ID = E_BLOCK_NUMBER_OF_TYPES - 1, ///< Maximum BlockType number used // Synonym or ID compatibility |