summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2015-07-05 21:05:07 +0200
committerLoïc Blot <lblot@infopro-digital.com>2015-07-07 17:03:26 +0200
commitd92d376148f7ed35df1c757aab5eca5645bb8ddd (patch)
treec019258eeb401fdfc1ec39413af9d07623f2bfcf /src/client.cpp
parenta93838707a9aab104c20b6a971d8c622184a508f (diff)
downloadminetest-d92d376148f7ed35df1c757aab5eca5645bb8ddd.tar.gz
minetest-d92d376148f7ed35df1c757aab5eca5645bb8ddd.tar.bz2
minetest-d92d376148f7ed35df1c757aab5eca5645bb8ddd.zip
Client: better m_proto_ver initialisation
Previously, m_proto_ver was set to the serialisation version inside the legacy init packet. Now, if the server doesn't send a protocol version (protocols < 25), we set m_proto_ver to some value < 25 and > 0.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp
index b02e6229c..2f8babfa2 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -229,6 +229,7 @@ Client::Client(
m_con(PROTOCOL_ID, 512, CONNECTION_TIMEOUT, ipv6, this),
m_device(device),
m_server_ser_ver(SER_FMT_VER_INVALID),
+ m_proto_ver(0),
m_playeritem(0),
m_inventory_updated(false),
m_inventory_from_server(NULL),