diff options
author | STRWarrior <niels.breuker@hotmail.nl> | 2013-09-08 18:33:53 +0200 |
---|---|---|
committer | STRWarrior <niels.breuker@hotmail.nl> | 2013-09-08 18:33:53 +0200 |
commit | 00a25016b34ec99bbbf21624f9dc7943431fd4e1 (patch) | |
tree | 445d81320172a1799eb716f814a5bc98d84c6878 /source/BlockID.cpp | |
parent | Implemented proper chunk unloading in all 1.3.2+ clients (diff) | |
download | cuberite-00a25016b34ec99bbbf21624f9dc7943431fd4e1.tar cuberite-00a25016b34ec99bbbf21624f9dc7943431fd4e1.tar.gz cuberite-00a25016b34ec99bbbf21624f9dc7943431fd4e1.tar.bz2 cuberite-00a25016b34ec99bbbf21624f9dc7943431fd4e1.tar.lz cuberite-00a25016b34ec99bbbf21624f9dc7943431fd4e1.tar.xz cuberite-00a25016b34ec99bbbf21624f9dc7943431fd4e1.tar.zst cuberite-00a25016b34ec99bbbf21624f9dc7943431fd4e1.zip |
Diffstat (limited to 'source/BlockID.cpp')
-rw-r--r-- | source/BlockID.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/BlockID.cpp b/source/BlockID.cpp index 793e5e523..0356cabba 100644 --- a/source/BlockID.cpp +++ b/source/BlockID.cpp @@ -1,4 +1,3 @@ - // BlockID.cpp // Implements the helper functions for converting Block ID string to int etc. @@ -722,8 +721,10 @@ public: g_BlockIsSnowable[E_BLOCK_WALLSIGN] = false; g_BlockIsSnowable[E_BLOCK_WATER] = false; g_BlockIsSnowable[E_BLOCK_YELLOW_FLOWER] = false; + g_BlockIsSnowable[E_BLOCK_LILY_PAD] = false; + - // Blocks that don´t drop without a special tool + // Blocks that don�t drop without a special tool g_BlockRequiresSpecialTool[E_BLOCK_BRICK] = true; g_BlockRequiresSpecialTool[E_BLOCK_CAULDRON] = true; g_BlockRequiresSpecialTool[E_BLOCK_COAL_ORE] = true; |