little fix

This commit is contained in:
Adam Ierymenko 2017-01-27 13:52:29 -08:00
parent f102fd7f92
commit bc218f9414

View File

@ -437,7 +437,7 @@ bool IncomingPacket::_doOK(const RuntimeEnvironment *RR,const SharedPtr<Peer> &p
const unsigned int endOfWorlds = ptr + worldLen;
while (ptr < endOfWorlds) {
World w;
w.deserialize(*this,ptr);
ptr += w.deserialize(*this,ptr);
RR->topology->addWorld(w,true);
}
}