diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2010-03-31 20:28:02 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:32 +0000 |
commit | 8a26228262896a90ccc7411da8972263032daceb (patch) | |
tree | 405e2f5fd6e7474ba39b2d815517247d942e164b /src/cgame | |
parent | e852aff93e0691a050d876dada16eb15ecd1b134 (diff) |
* (bug 4575) CMD_CHEAT_TEAM gives the wrong error message (thanks Oops)
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_servercmds.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c index faa5a175..db1b2262 100644 --- a/src/cgame/cg_servercmds.c +++ b/src/cgame/cg_servercmds.c @@ -543,7 +543,8 @@ void CG_Menu( int menu, int arg ) break; case MN_CMD_CHEAT_TEAM: - shortMsg = "You may not use this command while on a team"; + shortMsg = "Cheats are not enabled on this server, so " + "you may not use this command while on a team"; type = DT_COMMAND; break; |