diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-03 09:47:35 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-03 09:47:35 +0200 |
commit | f7b8a301f8a705cec6df17c7051164169cf619a6 (patch) | |
tree | 18e0c07ecb0b0750868a37f1f62512f84f769c93 /source/World.cpp | |
parent | dtOnFire damage wasn't dealt properly (diff) | |
download | cuberite-f7b8a301f8a705cec6df17c7051164169cf619a6.tar cuberite-f7b8a301f8a705cec6df17c7051164169cf619a6.tar.gz cuberite-f7b8a301f8a705cec6df17c7051164169cf619a6.tar.bz2 cuberite-f7b8a301f8a705cec6df17c7051164169cf619a6.tar.lz cuberite-f7b8a301f8a705cec6df17c7051164169cf619a6.tar.xz cuberite-f7b8a301f8a705cec6df17c7051164169cf619a6.tar.zst cuberite-f7b8a301f8a705cec6df17c7051164169cf619a6.zip |
Diffstat (limited to '')
-rw-r--r-- | source/World.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/World.cpp b/source/World.cpp index 4333aa7a4..ac7ba42aa 100644 --- a/source/World.cpp +++ b/source/World.cpp @@ -1843,6 +1843,8 @@ void cWorld::AddPlayer(cPlayer * a_Player) m_Players.remove(a_Player); // Make sure the player is registered only once m_Players.push_back(a_Player); + + // The player has already been added to the chunkmap as the entity, do NOT add again! } |