From cb872f8a4126ebe0bb33b97834a0506dc80536af Mon Sep 17 00:00:00 2001 From: Mackenzie <41524393+Mack29446@users.noreply.github.com> Date: Sat, 24 Sep 2022 22:46:38 +0100 Subject: [PATCH 1/3] Update BeamNG Version --- src/Startup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Startup.cpp b/src/Startup.cpp index acc94aa..a507051 100755 --- a/src/Startup.cpp +++ b/src/Startup.cpp @@ -246,7 +246,7 @@ void EnableMP(){ } void PreGame(const std::string& GamePath){ - const std::string CurrVer("0.26.0.0"); + const std::string CurrVer("0.26.1.0"); std::string GameVer = CheckVer(GamePath); info("Game Version : " + GameVer); if(GameVer < CurrVer){ From c92e32c0e1a566fb2e2aa6445b138f2cec36402a Mon Sep 17 00:00:00 2001 From: Mackenzie <41524393+Mack29446@users.noreply.github.com> Date: Sat, 24 Sep 2022 22:48:17 +0100 Subject: [PATCH 2/3] Remove mod wipe warn and delay --- src/Startup.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Startup.cpp b/src/Startup.cpp index a507051..2fd2b4f 100755 --- a/src/Startup.cpp +++ b/src/Startup.cpp @@ -195,10 +195,6 @@ size_t DirCount(const std::filesystem::path& path){ void CheckMP(const std::string& Path) { if (!fs::exists(Path))return; size_t c = DirCount(fs::path(Path)); - if (c > 3) { - warn(std::to_string(c - 1) + " multiplayer mods will be wiped from mods/multiplayer! Close this if you don't want that!"); - std::this_thread::sleep_for(std::chrono::seconds(15)); - } try { for (auto& p : fs::directory_iterator(Path)){ if(p.exists() && !p.is_directory()){ From e483f520db14a70a5486de0633a0d1ec896f8dc3 Mon Sep 17 00:00:00 2001 From: Mackenzie <41524393+Mack29446@users.noreply.github.com> Date: Sat, 24 Sep 2022 22:49:10 +0100 Subject: [PATCH 3/3] Bump launcher version 2.0.78 -> 2.0.79 --- src/Startup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Startup.cpp b/src/Startup.cpp index 2fd2b4f..4e854e9 100755 --- a/src/Startup.cpp +++ b/src/Startup.cpp @@ -29,7 +29,7 @@ std::string GetVer(){ return "2.0"; } std::string GetPatch(){ - return ".78"; + return ".79"; } std::string GetEP(char*P){ static std::string Ret = [&](){