From 4826fb5fc2bafe15416cf91a6d51e23d16c01f2c Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Wed, 17 Feb 2021 01:14:55 +0100 Subject: [PATCH] fix version naming --- include/Common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Common.h b/include/Common.h index 650bebd..935091f 100644 --- a/include/Common.h +++ b/include/Common.h @@ -42,8 +42,8 @@ public: // Causes all threads to finish up and exit gracefull gracefully static void GracefullyShutdown(); static TConsole& Console() { return *mConsole; } - static std::string ServerVersion() { return "v1.20"; } - static std::string ClientVersion() { return "v1.80"; } + static std::string ServerVersion() { return "1.20"; } + static std::string ClientVersion() { return "1.80"; } static std::string PPS() { return mPPS; } static void SetPPS(std::string NewPPS) { mPPS = NewPPS; }