diff options
| author | Paweł Redman <pawel.redman@gmail.com> | 2015-03-13 19:14:17 +0100 | 
|---|---|---|
| committer | Paweł Redman <pawel.redman@gmail.com> | 2015-03-13 19:14:17 +0100 | 
| commit | 15ff89a0fdae3bc5c285378ca3881079ae557b15 (patch) | |
| tree | 5d47cf199f7726e3a1e8d86ef51a9756c798a44f | |
| parent | 24c68838af08ee3e2007d5e7c89b6ccd4aa55f6f (diff) | |
Fix ordering of cmds in g_cmds.c.
| -rw-r--r-- | src/game/g_cmds.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index c17ec99..f3cada7 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -3449,8 +3449,8 @@ commands_t cmds[ ] = {    { "itemtoggle", CMD_HUMAN|CMD_LIVING, Cmd_ToggleItem_f },    { "kill", CMD_TEAM|CMD_LIVING, Cmd_Kill_f },    { "levelshot", CMD_CHEAT, Cmd_LevelShot_f }, -  { "listmaps", CMD_MESSAGE|CMD_INTERMISSION, Cmd_ListMaps_f },    { "listemoticons", CMD_MESSAGE|CMD_INTERMISSION, Cmd_ListEmoticons_f }, +  { "listmaps", CMD_MESSAGE|CMD_INTERMISSION, Cmd_ListMaps_f },    { "maplog", CMD_MESSAGE|CMD_INTERMISSION, Cmd_MapLog_f },    { "myscore", 0, Cmd_MyScore_f },    { "noclip", CMD_CHEAT_TEAM, Cmd_Noclip_f },  | 
