diff options
author | Mattes D <github@xoft.cz> | 2014-06-18 18:23:18 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-06-18 18:23:18 +0200 |
commit | c30b7b87354cd7868dd986008ac91187390a08b2 (patch) | |
tree | 5f7222853d649ca5e66a2640462b4468be6fd79e /src/Blocks/BlockFire.h | |
parent | Merge pull request #1100 from Howaner/Slabs (diff) | |
parent | Merge branch 'master' into GlobalFixes (diff) | |
download | cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.gz cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.bz2 cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.lz cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.xz cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.tar.zst cuberite-c30b7b87354cd7868dd986008ac91187390a08b2.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockFire.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockFire.h b/src/Blocks/BlockFire.h index f9f32eb50..147e4b53e 100644 --- a/src/Blocks/BlockFire.h +++ b/src/Blocks/BlockFire.h @@ -36,8 +36,8 @@ public: - Loop through boundary variables, and fill with portal blocks based on Dir with meta from Dir */ - a_BlockY--; // Because we want the block below the fire - FindAndSetPortalFrame(a_BlockX, a_BlockY, a_BlockZ, a_ChunkInterface, a_WorldInterface); + // a_BlockY - 1: Because we want the block below the fire + FindAndSetPortalFrame(a_BlockX, a_BlockY - 1, a_BlockZ, a_ChunkInterface, a_WorldInterface); } virtual void OnDigging(cChunkInterface & a_ChunkInterface, cWorldInterface & a_WorldInterface, cPlayer * a_Player, int a_BlockX, int a_BlockY, int a_BlockZ) override |