diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-04-06 21:45:55 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-04-06 21:45:55 +0200 |
commit | 4d7b250a509213fa7043b3670c6a393a3683fc69 (patch) | |
tree | 7d539af52515c634e4f3f6e1c579dfe6d6339589 /src/Blocks/BlockDirt.h | |
parent | Merge branch 'master' into Slabs (diff) | |
download | cuberite-4d7b250a509213fa7043b3670c6a393a3683fc69.tar cuberite-4d7b250a509213fa7043b3670c6a393a3683fc69.tar.gz cuberite-4d7b250a509213fa7043b3670c6a393a3683fc69.tar.bz2 cuberite-4d7b250a509213fa7043b3670c6a393a3683fc69.tar.lz cuberite-4d7b250a509213fa7043b3670c6a393a3683fc69.tar.xz cuberite-4d7b250a509213fa7043b3670c6a393a3683fc69.tar.zst cuberite-4d7b250a509213fa7043b3670c6a393a3683fc69.zip |
Diffstat (limited to 'src/Blocks/BlockDirt.h')
-rw-r--r-- | src/Blocks/BlockDirt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Blocks/BlockDirt.h b/src/Blocks/BlockDirt.h index 84c8461b5..0c550257e 100644 --- a/src/Blocks/BlockDirt.h +++ b/src/Blocks/BlockDirt.h @@ -2,7 +2,6 @@ #pragma once #include "BlockHandler.h" -#include "BlockSlab.h" #include "../FastRandom.h" @@ -67,7 +66,7 @@ public: cChunk * Chunk = a_Chunk.GetRelNeighborChunkAdjustCoords(BlockX, BlockZ); if (Chunk == NULL) { - // Unloaded chunks + // Unloaded chunk continue; } Chunk->GetBlockTypeMeta(BlockX, BlockY, BlockZ, DestBlock, DestMeta); |