summaryrefslogtreecommitdiffstats
path: root/src/ChunkMap.cpp
diff options
context:
space:
mode:
authorpeterbell10 <peterbell10@live.co.uk>2017-07-31 21:50:40 +0200
committerLukas Pioch <lukas@zgow.de>2017-08-01 08:21:20 +0200
commit8eb5672920f8834ffe6edbff62713963b8d2ba3d (patch)
tree9c63da705ae076f8989414a3bc123d0a12866d59 /src/ChunkMap.cpp
parentUpdated plugin Core (diff)
downloadcuberite-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 'src/ChunkMap.cpp')
-rw-r--r--src/ChunkMap.cpp4
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());
}
}