From 2b87fd46d9ee453898491ed6cf015778a07b263d Mon Sep 17 00:00:00 2001 From: Fernando-A-Rocha Date: Mon, 14 Oct 2024 16:17:36 +0100 Subject: [PATCH] make it default true to not break backwards compatibility --- Client/mods/deathmatch/logic/lua/CLuaFunctionDefs.Util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/mods/deathmatch/logic/lua/CLuaFunctionDefs.Util.cpp b/Client/mods/deathmatch/logic/lua/CLuaFunctionDefs.Util.cpp index 0cb7c05cbf..add0362416 100644 --- a/Client/mods/deathmatch/logic/lua/CLuaFunctionDefs.Util.cpp +++ b/Client/mods/deathmatch/logic/lua/CLuaFunctionDefs.Util.cpp @@ -12,7 +12,7 @@ int CLuaFunctionDefs::GetValidPedModels(lua_State* luaVM) { - bool includeCustom = false; + bool includeCustom = true; CScriptArgReader argStream(luaVM); argStream.ReadBool(includeCustom);