summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-09-08 18:39:35 +0200
committermadmaxoft <github@xoft.cz>2013-09-08 18:39:35 +0200
commitab61b4193beb8b1d672395ec7f2908adeb79e6a7 (patch)
treee2d03f172d11b1ccb961637dd0f863b47fef2c0f
parentThrown ender pearls are saved properly to MCA. (diff)
downloadcuberite-ab61b4193beb8b1d672395ec7f2908adeb79e6a7.tar
cuberite-ab61b4193beb8b1d672395ec7f2908adeb79e6a7.tar.gz
cuberite-ab61b4193beb8b1d672395ec7f2908adeb79e6a7.tar.bz2
cuberite-ab61b4193beb8b1d672395ec7f2908adeb79e6a7.tar.lz
cuberite-ab61b4193beb8b1d672395ec7f2908adeb79e6a7.tar.xz
cuberite-ab61b4193beb8b1d672395ec7f2908adeb79e6a7.tar.zst
cuberite-ab61b4193beb8b1d672395ec7f2908adeb79e6a7.zip
-rw-r--r--source/BlockID.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/BlockID.cpp b/source/BlockID.cpp
index 078c9d9ab..2626019f2 100644
--- a/source/BlockID.cpp
+++ b/source/BlockID.cpp
@@ -701,6 +701,7 @@ public:
g_BlockIsSnowable[E_BLOCK_GLASS] = false;
g_BlockIsSnowable[E_BLOCK_ICE] = false;
g_BlockIsSnowable[E_BLOCK_LAVA] = false;
+ g_BlockIsSnowable[E_BLOCK_LILY_PAD] = false;
g_BlockIsSnowable[E_BLOCK_LOCKED_CHEST] = false;
g_BlockIsSnowable[E_BLOCK_REDSTONE_REPEATER_OFF] = false;
g_BlockIsSnowable[E_BLOCK_REDSTONE_REPEATER_ON] = false;
@@ -722,10 +723,9 @@ 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;