1
0

cWorld::SendBlockTo take player by ref

This commit is contained in:
peterbell10
2017-07-31 20:50:40 +01:00
committed by Lukas Pioch
parent ec08bf6255
commit 8eb5672920
15 changed files with 33 additions and 33 deletions

View File

@@ -2385,7 +2385,7 @@ bool cWorld::DigBlock(int a_X, int a_Y, int a_Z)
void cWorld::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer * a_Player)
void cWorld::SendBlockTo(int a_X, int a_Y, int a_Z, cPlayer & a_Player)
{
m_ChunkMap->SendBlockTo(a_X, a_Y, a_Z, a_Player);
}