From c60877b6f217ddce79bd4fc2f0c234614df9a326 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Tue, 6 Oct 2009 03:06:02 -0700 Subject: [PATCH 1/3] GoldenEye:Source supports ShowMenu (bug 3747, r=dvander). --- gamedata/core.games/common.games.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/gamedata/core.games/common.games.txt b/gamedata/core.games/common.games.txt index a9740943..51e90724 100644 --- a/gamedata/core.games/common.games.txt +++ b/gamedata/core.games/common.games.txt @@ -130,6 +130,7 @@ "game" "left4dead" "game" "obsidian" "game" "empires" + "game" "gesource" } "Keys" From 5528b9ba094a7a4597d2628bef53555270d41632 Mon Sep 17 00:00:00 2001 From: TESLA-X4 Date: Tue, 6 Oct 2009 03:13:44 -0700 Subject: [PATCH 2/3] HL2DM support for OnPlayerRunCmd (bug 3914, r=dvander). --- gamedata/sdktools.games/game.hl2mp.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/gamedata/sdktools.games/game.hl2mp.txt b/gamedata/sdktools.games/game.hl2mp.txt index 4d58ca9c..9a8768f5 100644 --- a/gamedata/sdktools.games/game.hl2mp.txt +++ b/gamedata/sdktools.games/game.hl2mp.txt @@ -96,6 +96,11 @@ "windows" "32" "linux" "33" } + "PlayerRunCmd" + { + "windows" "346" + "linux" "347" + } } } -} \ No newline at end of file +} From be8c498aea06588e7e535f8040c3592ea624c743 Mon Sep 17 00:00:00 2001 From: Erik Minekus Date: Tue, 6 Oct 2009 03:15:10 -0700 Subject: [PATCH 3/3] Fix help message for sm cvars (bug 3994, r=dvander). --- core/ConVarManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/ConVarManager.cpp b/core/ConVarManager.cpp index 0670c17f..76106b7f 100644 --- a/core/ConVarManager.cpp +++ b/core/ConVarManager.cpp @@ -315,7 +315,7 @@ void ConVarManager::OnRootConsoleCommand(const char *cmdname, const CCommand &co } /* Display usage of subcommand */ - g_RootMenu.ConsolePrint("[SM] Usage: sm convars "); + g_RootMenu.ConsolePrint("[SM] Usage: sm cvars "); } Handle_t ConVarManager::CreateConVar(IPluginContext *pContext, const char *name, const char *defaultVal, const char *description, int flags, bool hasMin, float min, bool hasMax, float max)