summaryrefslogtreecommitdiffstats
path: root/source/ClientHandle.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-15 17:29:20 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-15 17:29:20 +0200
commita67760f7c98a9e57a61ee9c61a2175a33ebcb91b (patch)
treee4079bd37abb06465a5bce59d3af397ec2be2b2a /source/ClientHandle.cpp
parentFixed The MagicCarpet plugin (diff)
downloadcuberite-a67760f7c98a9e57a61ee9c61a2175a33ebcb91b.tar
cuberite-a67760f7c98a9e57a61ee9c61a2175a33ebcb91b.tar.gz
cuberite-a67760f7c98a9e57a61ee9c61a2175a33ebcb91b.tar.bz2
cuberite-a67760f7c98a9e57a61ee9c61a2175a33ebcb91b.tar.lz
cuberite-a67760f7c98a9e57a61ee9c61a2175a33ebcb91b.tar.xz
cuberite-a67760f7c98a9e57a61ee9c61a2175a33ebcb91b.tar.zst
cuberite-a67760f7c98a9e57a61ee9c61a2175a33ebcb91b.zip
Diffstat (limited to 'source/ClientHandle.cpp')
-rw-r--r--source/ClientHandle.cpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/source/ClientHandle.cpp b/source/ClientHandle.cpp
index d0904bfb0..9d5bbaeaf 100644
--- a/source/ClientHandle.cpp
+++ b/source/ClientHandle.cpp
@@ -1957,7 +1957,17 @@ void cClientHandle::PacketError(unsigned char a_PacketType)
void cClientHandle::DataReceived(const char * a_Data, int a_Size)
{
// Data is received from the client, hand it off to the protocol:
- m_Protocol->DataReceived(a_Data, a_Size);
+ if ((m_Player != NULL) && (m_Player->GetWorld() != NULL))
+ {
+ // Lock the world, so that plugins reacting to protocol events have already the chunkmap locked
+ cWorld::cLock(*m_Player->GetWorld());
+
+ m_Protocol->DataReceived(a_Data, a_Size);
+ }
+ else
+ {
+ m_Protocol->DataReceived(a_Data, a_Size);
+ }
m_TimeSinceLastPacket = 0;
}