diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-01 14:06:32 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-01 14:06:32 +0100 |
commit | c6304b2b4faf31c2e4a91a07bcac298467898dba (patch) | |
tree | fbb8ef9920403a02d26215492444a0b6045fa247 /src/ClientHandle.cpp | |
parent | Merge branch 'master' into GeneratingBenchmark2 (diff) | |
download | cuberite-c6304b2b4faf31c2e4a91a07bcac298467898dba.tar cuberite-c6304b2b4faf31c2e4a91a07bcac298467898dba.tar.gz cuberite-c6304b2b4faf31c2e4a91a07bcac298467898dba.tar.bz2 cuberite-c6304b2b4faf31c2e4a91a07bcac298467898dba.tar.lz cuberite-c6304b2b4faf31c2e4a91a07bcac298467898dba.tar.xz cuberite-c6304b2b4faf31c2e4a91a07bcac298467898dba.tar.zst cuberite-c6304b2b4faf31c2e4a91a07bcac298467898dba.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ClientHandle.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp index 3cad46adf..2ec9a87af 100644 --- a/src/ClientHandle.cpp +++ b/src/ClientHandle.cpp @@ -902,9 +902,8 @@ void cClientHandle::HandleRightClick(int a_BlockX, int a_BlockY, int a_BlockZ, c // A plugin doesn't agree with using the block, abort return; } - cChunkInterface *ChunkInterface = new cChunkInterface(World->GetChunkMap()); - BlockHandler->OnUse(ChunkInterface, World, m_Player, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, a_CursorX, a_CursorY, a_CursorZ); - delete ChunkInterface; + cChunkInterface ChunkInterface(World->GetChunkMap()); + BlockHandler->OnUse(ChunkInterface, *World, m_Player, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, a_CursorX, a_CursorY, a_CursorZ); PlgMgr->CallHookPlayerUsedBlock(*m_Player, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, a_CursorX, a_CursorY, a_CursorZ, BlockType, BlockMeta); return; } @@ -1065,7 +1064,7 @@ void cClientHandle::HandlePlaceBlock(int a_BlockX, int a_BlockY, int a_BlockZ, c m_Player->GetInventory().RemoveOneEquippedItem(); } cChunkInterface ChunkInterface(World->GetChunkMap()); - NewBlock->OnPlacedByPlayer(&ChunkInterface,World, m_Player, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, a_CursorX, a_CursorY, a_CursorZ, BlockType, BlockMeta); + NewBlock->OnPlacedByPlayer(ChunkInterface,*World, m_Player, a_BlockX, a_BlockY, a_BlockZ, a_BlockFace, a_CursorX, a_CursorY, a_CursorZ, BlockType, BlockMeta); // Step sound with 0.8f pitch is used as block placement sound World->BroadcastSoundEffect(NewBlock->GetStepSound(), a_BlockX * 8, a_BlockY * 8, a_BlockZ * 8, 1.0f, 0.8f); |