X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fchunk.cpp;h=4cabcecf040e17784ac86b2e0d5c869949d63c34;hb=30d36f3d545617faef76f90c4121d6ed118ba272;hp=fbee721c601b4fb0451f17ef72ef43f1b6f3599f;hpb=6933bedd9a46d69d9ad3cbdee4f17cd78103e336;p=blank.git diff --git a/src/chunk.cpp b/src/chunk.cpp index fbee721..4cabcec 100644 --- a/src/chunk.cpp +++ b/src/chunk.cpp @@ -160,11 +160,11 @@ bool Chunk::Obstructed(int idx) const { const BlockType &left = Type(blocks[idx - 1]); if (!left.fill.right) return false; - const BlockType &top = Type(blocks[idx + Width()]); - if (!top.fill.bottom) return false; + const BlockType &up = Type(blocks[idx + Width()]); + if (!up.fill.down) return false; - const BlockType &bottom = Type(blocks[idx - Width()]); - if (!bottom.fill.top) return false; + const BlockType &down = Type(blocks[idx - Width()]); + if (!down.fill.up) return false; const BlockType &front = Type(blocks[idx + Width() * Height()]); if (!front.fill.back) return false;