Updating strings to v2

This commit is contained in:
Starystars67 2021-03-29 22:23:56 +01:00
parent 3c6aa741ef
commit 2cd6e21f8c
2 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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; }