diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-02-13 16:14:48 -0800 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2017-02-13 16:14:48 -0800 |
| commit | 969e09210d89f4cecf01920d8315f984ea59245e (patch) | |
| tree | 5da42d39a89d7080e4c16870f3ecdd5e3e0b1d11 /node/IncomingPacket.cpp | |
| parent | cd7b571da071a4af4afd978b920e1b8372c880a3 (diff) | |
| download | infinitytier-969e09210d89f4cecf01920d8315f984ea59245e.tar.gz infinitytier-969e09210d89f4cecf01920d8315f984ea59245e.zip | |
Fix loading of existing moons.
Diffstat (limited to 'node/IncomingPacket.cpp')
| -rw-r--r-- | node/IncomingPacket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/IncomingPacket.cpp b/node/IncomingPacket.cpp index c6cf7f36..41a06937 100644 --- a/node/IncomingPacket.cpp +++ b/node/IncomingPacket.cpp @@ -461,7 +461,7 @@ bool IncomingPacket::_doOK(const RuntimeEnvironment *RR,const SharedPtr<Peer> &p while (ptr < endOfWorlds) { World w; ptr += w.deserialize(*this,ptr); - RR->topology->addWorld(w); + RR->topology->addWorld(w,false); } } else { ptr += worldLen; |
