diff options
author | peterbell10 <peterbell10@live.co.uk> | 2017-07-31 21:50:40 +0200 |
---|---|---|
committer | Lukas Pioch <lukas@zgow.de> | 2017-08-01 08:21:20 +0200 |
commit | 8eb5672920f8834ffe6edbff62713963b8d2ba3d (patch) | |
tree | 9c63da705ae076f8989414a3bc123d0a12866d59 /src/ChunkMap.cpp | |
parent | Updated plugin Core (diff) | |
download | cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.gz cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.bz2 cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.lz cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.xz cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.tar.zst cuberite-8eb5672920f8834ffe6edbff62713963b8d2ba3d.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkMap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChunkMap.cpp b/src/ChunkMap.cpp index 491bc4752..9c662f863 100644 --- a/src/ChunkMap.cpp +++ b/src/ChunkMap.cpp @@ -1371,7 +1371,7 @@ bool cChunkMap::DigBlock(int a_BlockX, int a_BlockY, int a_BlockZ) -void cChunkMap::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer * a_Player) +void cChunkMap::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer & a_Player) { int ChunkX, ChunkZ; cChunkDef::AbsoluteToRelative(a_X, a_Y, a_Z, ChunkX, ChunkZ); @@ -1380,7 +1380,7 @@ void cChunkMap::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer * a_Player) cChunkPtr Chunk = GetChunk(ChunkX, ChunkZ); if ((Chunk != nullptr) && (Chunk->IsValid())) { - Chunk->SendBlockTo(a_X, a_Y, a_Z, a_Player->GetClientHandle()); + Chunk->SendBlockTo(a_X, a_Y, a_Z, a_Player.GetClientHandle()); } } |