summaryrefslogtreecommitdiffstats
path: root/src/Chunk.cpp
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2014-10-23 21:19:43 +0200
committerHowaner <franzi.moos@googlemail.com>2014-10-23 21:19:43 +0200
commit9af58a81d6467829b72801169c8e80a2bab01804 (patch)
tree454cee2b4b47387ba19e7537de3d5d699be7f9fe /src/Chunk.cpp
parentMerge branch 'master' into ChunkLoader (diff)
downloadcuberite-9af58a81d6467829b72801169c8e80a2bab01804.tar
cuberite-9af58a81d6467829b72801169c8e80a2bab01804.tar.gz
cuberite-9af58a81d6467829b72801169c8e80a2bab01804.tar.bz2
cuberite-9af58a81d6467829b72801169c8e80a2bab01804.tar.lz
cuberite-9af58a81d6467829b72801169c8e80a2bab01804.tar.xz
cuberite-9af58a81d6467829b72801169c8e80a2bab01804.tar.zst
cuberite-9af58a81d6467829b72801169c8e80a2bab01804.zip
Diffstat (limited to 'src/Chunk.cpp')
-rw-r--r--src/Chunk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp
index 35a16edec..a0224322a 100644
--- a/src/Chunk.cpp
+++ b/src/Chunk.cpp
@@ -1742,7 +1742,7 @@ void cChunk::SetAreaBiome(int a_MinRelX, int a_MaxRelX, int a_MinRelZ, int a_Max
// Re-send the chunk to all clients:
for (cClientHandleList::iterator itr = m_LoadedByClient.begin(); itr != m_LoadedByClient.end(); ++itr)
{
- m_World->ForceSendChunkTo(m_PosX, m_PosZ, cChunkSender::E_CHUNK_PRIORITY_HIGH, (*itr));
+ m_World->ForceSendChunkTo(m_PosX, m_PosZ, cChunkSender::E_CHUNK_PRIORITY_MEDIUM, (*itr));
} // for itr - m_LoadedByClient[]
}