mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-06-18 06:30:53 +00:00
bump in-server version number
This commit is contained in:
+11
-11
@@ -17,16 +17,16 @@ class Application final {
|
|||||||
public:
|
public:
|
||||||
// types
|
// types
|
||||||
struct TSettings {
|
struct TSettings {
|
||||||
TSettings() noexcept :
|
TSettings() noexcept
|
||||||
ServerName("BeamMP Server"),
|
: ServerName("BeamMP Server")
|
||||||
ServerDesc("BeamMP Default Description"),
|
, ServerDesc("BeamMP Default Description")
|
||||||
Resource("Resources"),
|
, Resource("Resources")
|
||||||
MapName("/levels/gridmap/info.json"),
|
, MapName("/levels/gridmap/info.json")
|
||||||
MaxPlayers(10),
|
, MaxPlayers(10)
|
||||||
Private(false),
|
, Private(false)
|
||||||
MaxCars(1),
|
, MaxCars(1)
|
||||||
DebugModeEnabled(false),
|
, DebugModeEnabled(false)
|
||||||
Port(30814){}
|
, Port(30814) { }
|
||||||
std::string ServerName;
|
std::string ServerName;
|
||||||
std::string ServerDesc;
|
std::string ServerDesc;
|
||||||
std::string Resource;
|
std::string Resource;
|
||||||
@@ -50,7 +50,7 @@ public:
|
|||||||
// Causes all threads to finish up and exit gracefull gracefully
|
// Causes all threads to finish up and exit gracefull gracefully
|
||||||
static void GracefullyShutdown();
|
static void GracefullyShutdown();
|
||||||
static TConsole& Console() { return *mConsole; }
|
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 ClientVersion() { return "2.0"; }
|
||||||
static std::string PPS() { return mPPS; }
|
static std::string PPS() { return mPPS; }
|
||||||
static void SetPPS(std::string NewPPS) { mPPS = NewPPS; }
|
static void SetPPS(std::string NewPPS) { mPPS = NewPPS; }
|
||||||
|
|||||||
Reference in New Issue
Block a user