diff options
Diffstat (limited to 'src/Entities/Player.cpp')
-rw-r--r-- | src/Entities/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Entities/Player.cpp b/src/Entities/Player.cpp index 9a5d6cf58..6dc5b9903 100644 --- a/src/Entities/Player.cpp +++ b/src/Entities/Player.cpp @@ -2761,7 +2761,7 @@ bool cPlayer::PlaceBlocks(const sSetBlockVector & a_Blocks) for (auto blk: a_Blocks) { cBlockHandler * newBlock = BlockHandler(blk.m_BlockType); - newBlock->OnPlacedByPlayer(ChunkInterface, *m_World, this, blk); + newBlock->OnPlacedByPlayer(ChunkInterface, *m_World, *this, blk); } // Call the "placed" hooks: |