From 0479eb38ccd035ec00a7043cc68e61dc2293d630 Mon Sep 17 00:00:00 2001 From: David Cernat Date: Wed, 28 Sep 2016 08:26:18 +0300 Subject: [PATCH] Update protocol version and make version mismatch error less confusing --- apps/openmw/mwmp/Networking.cpp | 3 +-- components/openmw-mp/Version.hpp | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/openmw/mwmp/Networking.cpp b/apps/openmw/mwmp/Networking.cpp index cfe0948d6..4f6196a42 100644 --- a/apps/openmw/mwmp/Networking.cpp +++ b/apps/openmw/mwmp/Networking.cpp @@ -128,8 +128,7 @@ void Networking::Connect(const std::string &ip, unsigned short port) case ID_INVALID_PASSWORD: { errmsg = "Connection failed.\n" - "The client or server is outdated.\n" - "Ask your server administrator to resolve this problem."; + "The client or server is outdated."; queue = false; break; } diff --git a/components/openmw-mp/Version.hpp b/components/openmw-mp/Version.hpp index ad23f5e2a..e8d40e137 100644 --- a/components/openmw-mp/Version.hpp +++ b/components/openmw-mp/Version.hpp @@ -6,6 +6,6 @@ #define OPENMW_VERSION_HPP #define TES3MP_VERSION "0.0.1c" -#define TES3MP_PROTO_VERSION 2 +#define TES3MP_PROTO_VERSION 3 #endif //OPENMW_VERSION_HPP