diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b04bcb..45840ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,7 +46,7 @@ add_executable(BeamMP-Server include/TResourceManager.h src/TResourceManager.cpp include/THeartbeatThread.h src/THeartbeatThread.cpp include/Http.h src/Http.cpp - include/SocketIO.h src/SocketIO.cpp + #include/SocketIO.h src/SocketIO.cpp include/TPPSMonitor.h src/TPPSMonitor.cpp include/TNetwork.h src/TNetwork.cpp) diff --git a/include/Common.h b/include/Common.h index 89df249..ad2adbe 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 "1.20"; } - static std::string ClientVersion() { return "1.80"; } + static std::string ServerVersion() { return "2.0"; } + static std::string ClientVersion() { return "2.0"; } static std::string PPS() { return mPPS; } static void SetPPS(std::string NewPPS) { mPPS = NewPPS; }