diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2009-10-03 11:47:23 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:21 +0000 |
commit | 97e55ebf684547b2298df1c8c77f3902e3041bd4 (patch) | |
tree | 3b847a467fc38e0d2590e2288c3de45f8cd01763 /src/cgame | |
parent | 5651e55a8679bd84c0759eead6357c2c33583416 (diff) |
* Grammatical tweaks to menu messages
* De-tabbing whitespace
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_servercmds.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c index 4742eabe..43caae33 100644 --- a/src/cgame/cg_servercmds.c +++ b/src/cgame/cg_servercmds.c @@ -839,7 +839,7 @@ void CG_Menu( int menu, int arg ) break; case MN_A_CANTEVOLVE: - shortMsg = va( "You cannot evolve to %s", + shortMsg = va( "You cannot evolve into a %s", BG_ClassConfig( arg )->humanName ); type = DT_ARMOURYEVOLVE; break; @@ -855,19 +855,19 @@ void CG_Menu( int menu, int arg ) break; case MN_A_CLASSNOTSPAWN: - shortMsg = va( "You cannot spawn as %s", + shortMsg = va( "You cannot spawn as a %s", BG_ClassConfig( arg )->humanName ); type = DT_ARMOURYEVOLVE; break; case MN_A_CLASSNOTALLOWED: - shortMsg = va( "%s is not allowed", + shortMsg = va( "The %s is not allowed", BG_ClassConfig( arg )->humanName ); type = DT_ARMOURYEVOLVE; break; case MN_A_CLASSNOTATSTAGE: - shortMsg = va( "%s is not allowed at Stage %d", + shortMsg = va( "The %s is not allowed at Stage %d", BG_ClassConfig( arg )->humanName, cgs.alienStage + 1 ); type = DT_ARMOURYEVOLVE; |