summaryrefslogtreecommitdiffstats
path: root/source/cWorld.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-28 09:10:51 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-02-28 09:10:51 +0100
commit2c9198b2081b04f3813f8c632e85b0c4ce5c517a (patch)
treebfcba76fc96c8f02de338fd804d3894b7d8e53d3 /source/cWorld.cpp
parentFix for the perpetual load issue (diff)
downloadcuberite-2c9198b2081b04f3813f8c632e85b0c4ce5c517a.tar
cuberite-2c9198b2081b04f3813f8c632e85b0c4ce5c517a.tar.gz
cuberite-2c9198b2081b04f3813f8c632e85b0c4ce5c517a.tar.bz2
cuberite-2c9198b2081b04f3813f8c632e85b0c4ce5c517a.tar.lz
cuberite-2c9198b2081b04f3813f8c632e85b0c4ce5c517a.tar.xz
cuberite-2c9198b2081b04f3813f8c632e85b0c4ce5c517a.tar.zst
cuberite-2c9198b2081b04f3813f8c632e85b0c4ce5c517a.zip
Diffstat (limited to '')
-rw-r--r--source/cWorld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/cWorld.cpp b/source/cWorld.cpp
index ff2078f08..5cee37e43 100644
--- a/source/cWorld.cpp
+++ b/source/cWorld.cpp
@@ -922,7 +922,7 @@ void cWorld::Broadcast( const cPacket & a_Packet, cClientHandle* a_Exclude)
-void cWorld::BroadcastToChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ, cPacket & a_Packet, cClientHandle * a_Exclude)
+void cWorld::BroadcastToChunk(int a_ChunkX, int a_ChunkY, int a_ChunkZ, const cPacket & a_Packet, cClientHandle * a_Exclude)
{
m_ChunkMap->BroadcastToChunk(a_ChunkX, a_ChunkY, a_ChunkZ, a_Packet, a_Exclude);
}