diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2009-10-03 12:16:21 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:48 +0000 |
commit | 8d809caefb16b15cb5d5631992dcbc6f1929dce3 (patch) | |
tree | 83e911f0bca388d9ea32427eddac4b13a61d79e0 /src/cgame | |
parent | ccbc1b2f5a63cdf5545390d35bf0364a1073d395 (diff) |
* Fix compiler warning about G_FindOvermind
* Random fixes/rearrangements in deconstruct and PM_Weapon
* Merge tremulous r1137
- noclipping specs
- other noclip stuff
- fix ammo check
- maprotation fixes
- no taunting when dead
- code-level crap
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_servercmds.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c index f95d18b7..8de4e198 100644 --- a/src/cgame/cg_servercmds.c +++ b/src/cgame/cg_servercmds.c @@ -548,6 +548,11 @@ void CG_Menu( int menu, int arg ) type = DT_COMMAND; break; + case MN_CMD_CHEAT_TEAM: + shortMsg = "You may not use this command while on a team"; + type = DT_COMMAND; + break; + case MN_CMD_TEAM: //longMsg = "You must be on a team to perform this action. Join the alien" // "or human team and try again."; |