diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-09 18:27:42 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-06-09 18:27:42 +0200 |
commit | e0f74160ea83db6409eaec105fc0fe96151ecfac (patch) | |
tree | 85af183c740a0e170beb8bd4e1048288881cc03f | |
parent | Fixed a forgotten ini file read (diff) | |
download | cuberite-e0f74160ea83db6409eaec105fc0fe96151ecfac.tar cuberite-e0f74160ea83db6409eaec105fc0fe96151ecfac.tar.gz cuberite-e0f74160ea83db6409eaec105fc0fe96151ecfac.tar.bz2 cuberite-e0f74160ea83db6409eaec105fc0fe96151ecfac.tar.lz cuberite-e0f74160ea83db6409eaec105fc0fe96151ecfac.tar.xz cuberite-e0f74160ea83db6409eaec105fc0fe96151ecfac.tar.zst cuberite-e0f74160ea83db6409eaec105fc0fe96151ecfac.zip |
-rw-r--r-- | source/cChunk.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/cChunk.cpp b/source/cChunk.cpp index 21c84b8ce..5d5a1d972 100644 --- a/source/cChunk.cpp +++ b/source/cChunk.cpp @@ -445,6 +445,7 @@ void cChunk::CheckBlocks(void) NIBBLETYPE BlockMeta = GetMeta (index);
switch (BlockType)
{
+ // Stuff that drops when block below is destroyed:
case E_BLOCK_REDSTONE_REPEATER_OFF:
case E_BLOCK_REDSTONE_REPEATER_ON:
case E_BLOCK_REDSTONE_WIRE:
@@ -459,7 +460,8 @@ void cChunk::CheckBlocks(void) case E_BLOCK_YELLOW_FLOWER:
case E_BLOCK_RED_ROSE:
case E_BLOCK_RED_MUSHROOM:
- case E_BLOCK_BROWN_MUSHROOM: // Stuff that drops when block below is destroyed
+ case E_BLOCK_BROWN_MUSHROOM:
+ case E_BLOCK_SNOW:
{
if (GetBlock(BlockPos.x, BlockPos.y - 1, BlockPos.z) == E_BLOCK_AIR)
{
|