From 28c4c3bfe59297dad25423a2524ccda09f00c5b6 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sat, 27 Feb 2010 08:05:36 +0000 Subject: [PATCH] host_cmd.c (Host_InitCommands): register Host_Mods_f as "games" too, as an alias to the existing "mods" command. (this was unintentionally applied in revision 87, sigh...) git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@88 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/host_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/host_cmd.c b/Quake/host_cmd.c index ea701094..3d419687 100644 --- a/Quake/host_cmd.c +++ b/Quake/host_cmd.c @@ -2214,7 +2214,7 @@ void Host_InitCommands (void) Cmd_AddCommand ("maps", Host_Maps_f); //johnfitz Cmd_AddCommand ("game", Host_Game_f); //johnfitz Cmd_AddCommand ("mods", Host_Mods_f); //johnfitz - Cmd_AddCommand ("games", Host_Mods_f); // as an alias to "mods" -- S.A. + Cmd_AddCommand ("games", Host_Mods_f); // as an alias to "mods" -- S.A. / QuakeSpasm Cmd_AddCommand ("mapname", Host_Mapname_f); //johnfitz Cmd_AddCommand ("status", Host_Status_f);