From 8bf0698db3dd262bd0951e06e90fbb46a6d00b1a Mon Sep 17 00:00:00 2001 From: MTABot Date: Thu, 14 Nov 2024 07:30:47 +0000 Subject: [PATCH 1/3] Visual Studio Update Build Tools 2022: 17.12.35506.116 This is an automated commit to keep track of toolchain changes on the build server. It applies to every MTA build after this commit until further notice. [skip ci] From 8c0a01bac62ecc3e9510133dee9f8d6700065f03 Mon Sep 17 00:00:00 2001 From: Fernando Rocha <34967844+Fernando-A-Rocha@users.noreply.github.com> Date: Thu, 14 Nov 2024 15:40:08 +0000 Subject: [PATCH 2/3] Fix min_mta_version 'server' not working as expected (#3853) --- Server/mods/deathmatch/logic/CResource.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Server/mods/deathmatch/logic/CResource.cpp b/Server/mods/deathmatch/logic/CResource.cpp index 1c2ebe3ea8..d1b985fcfe 100644 --- a/Server/mods/deathmatch/logic/CResource.cpp +++ b/Server/mods/deathmatch/logic/CResource.cpp @@ -35,6 +35,8 @@ #include #include #include +#include "version.h" +#include "CStaticFunctionDefinitions.h" #ifdef WIN32 #include From 4fe9084a2e5c5eeed4b0a9a30a07607c812e923b Mon Sep 17 00:00:00 2001 From: Nico <122193236+Nico8340@users.noreply.github.com> Date: Sat, 16 Nov 2024 12:03:31 +0100 Subject: [PATCH 3/3] Remove unused symbol `CConsole::HandleTextAccepted` (#3858) --- Client/core/CConsole.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Client/core/CConsole.h b/Client/core/CConsole.h index 5899fa645d..677e1133ff 100644 --- a/Client/core/CConsole.h +++ b/Client/core/CConsole.h @@ -41,7 +41,6 @@ class CConsole : public CConsoleInterface bool IsInputActive(); void ActivateInput(); - void HandleTextAccepted(bool bHandled); void GetCommandInfo(const std::string& strIn, std::string& strCmdOut, std::string& strCmdLineOut); void ResetHistoryChanges();