diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-02 18:11:53 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-02 18:11:53 +0100 |
commit | 1e4e6c4619696e95b7b3f19650fe32c6a42d18b6 (patch) | |
tree | 9e8416c008a2e8b4f5f86d30de0224f9021b40a1 /src/Blocks/BlockVine.h | |
parent | Removed register keyword from Messinne Twister (diff) | |
parent | Fixed dark oak and acacia placement. (diff) | |
download | cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.gz cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.bz2 cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.lz cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.xz cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.tar.zst cuberite-1e4e6c4619696e95b7b3f19650fe32c6a42d18b6.zip |
Diffstat (limited to 'src/Blocks/BlockVine.h')
-rw-r--r-- | src/Blocks/BlockVine.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockVine.h b/src/Blocks/BlockVine.h index aa29849b2..aa0d582b3 100644 --- a/src/Blocks/BlockVine.h +++ b/src/Blocks/BlockVine.h @@ -105,7 +105,7 @@ public: } - void Check(cChunkInterface & a_ChunkInterface, int a_RelX, int a_RelY, int a_RelZ, cChunk & a_Chunk) override + void Check(cChunkInterface & a_ChunkInterface, cBlockPluginInterface & a_PluginInterface, int a_RelX, int a_RelY, int a_RelZ, cChunk & a_Chunk) override { NIBBLETYPE CurMeta = a_Chunk.GetMeta(a_RelX, a_RelY, a_RelZ); NIBBLETYPE MaxMeta = GetMaxMeta(a_Chunk, a_RelX, a_RelY, a_RelZ); @@ -128,7 +128,7 @@ public: { int BlockX = a_RelX + a_Chunk.GetPosX() * cChunkDef::Width; int BlockZ = a_RelZ + a_Chunk.GetPosZ() * cChunkDef::Width; - DropBlock(a_Chunk.GetWorld(), NULL, BlockX, a_RelY, BlockZ); + DropBlock(a_ChunkInterface, *a_Chunk.GetWorld(), a_PluginInterface, NULL, BlockX, a_RelY, BlockZ); } a_Chunk.SetBlock(a_RelX, a_RelY, a_RelZ, E_BLOCK_AIR, 0); return; |