From 5ee18e05766dbb6c35096fa450485ae6af68c107 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Fri, 25 Jun 2021 00:04:11 +0200 Subject: [PATCH] bump in-server version number --- include/Common.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/include/Common.h b/include/Common.h index d19e08c..bf61002 100644 --- a/include/Common.h +++ b/include/Common.h @@ -17,16 +17,16 @@ class Application final { public: // types struct TSettings { - TSettings() noexcept : - ServerName("BeamMP Server"), - ServerDesc("BeamMP Default Description"), - Resource("Resources"), - MapName("/levels/gridmap/info.json"), - MaxPlayers(10), - Private(false), - MaxCars(1), - DebugModeEnabled(false), - Port(30814){} + TSettings() noexcept + : ServerName("BeamMP Server") + , ServerDesc("BeamMP Default Description") + , Resource("Resources") + , MapName("/levels/gridmap/info.json") + , MaxPlayers(10) + , Private(false) + , MaxCars(1) + , DebugModeEnabled(false) + , Port(30814) { } std::string ServerName; std::string ServerDesc; std::string Resource; @@ -50,7 +50,7 @@ public: // Causes all threads to finish up and exit gracefull gracefully static void GracefullyShutdown(); static TConsole& Console() { return *mConsole; } - static std::string ServerVersion() { return "2.0.4"; } + static std::string ServerVersion() { return "2.1.1"; } static std::string ClientVersion() { return "2.0"; } static std::string PPS() { return mPPS; } static void SetPPS(std::string NewPPS) { mPPS = NewPPS; }