From 435e4c4695024702a8493e66d802652f116741f8 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Mon, 6 Feb 2017 12:06:10 -0800 Subject: Fix HELLO parse bug. --- node/IncomingPacket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/IncomingPacket.cpp b/node/IncomingPacket.cpp index 49bcae11..ddf93244 100644 --- a/node/IncomingPacket.cpp +++ b/node/IncomingPacket.cpp @@ -310,7 +310,7 @@ bool IncomingPacket::_doHELLO(const RuntimeEnvironment *RR,const bool alreadyAut uint64_t planetWorldTimestamp = 0; if ((ptr + 16) <= size()) { planetWorldId = at(ptr); ptr += 8; - planetWorldTimestamp = at(ptr); + planetWorldTimestamp = at(ptr); ptr += 8; } std::vector< std::pair > moonIdsAndTimestamps; -- cgit v1.2.3