diff options
author | Tim Angus <tim@ngus.net> | 2004-03-18 16:44:54 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2004-03-18 16:44:54 +0000 |
commit | 1eee6be0ea1aeec679cff80fea36a91e6d0c788f (patch) | |
tree | 835ab33758dd9fa0b3e6f0a5a9003efcf04c8060 /src/cgame | |
parent | 9582bcfdfcce0aa7132917c8403c5f12d2be3e79 (diff) |
* Added trigger_stage entity which is fired on stage transitions
* Alien evolution is no longer allowed within range of humans
* Reduced human damage boost from 10% to 7%
* Reduced reactor base health to 1250
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_servercmds.c | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c index da0ef801..3083e37b 100644 --- a/src/cgame/cg_servercmds.c +++ b/src/cgame/cg_servercmds.c @@ -717,15 +717,6 @@ void CG_Menu( int menu ) } break; - case MN_A_NOEROOM: - if( !cg_disableBuildWarnings.integer ) - { - trap_Cvar_Set( "ui_dialog", "There is no room to evolve here. Move away from walls or other " - "nearby objects and try again." ); - trap_SendConsoleCommand( "menu tremulous_alien_dialog\n" ); - } - break; - case MN_A_OVERMIND: if( !cg_disableBuildWarnings.integer ) { @@ -762,6 +753,19 @@ void CG_Menu( int menu ) } break; + case MN_A_NOEROOM: + trap_Cvar_Set( "ui_dialog", "There is no room to evolve here. Move away from walls or other " + "nearby objects and try again." ); + trap_SendConsoleCommand( "menu tremulous_alien_dialog\n" ); + break; + + case MN_A_TOOCLOSE: + trap_Cvar_Set( "ui_dialog", "This location is too close to the enemy to evolve. " + "Move away until you are no longer aware of the enemy's " + "presence and try again." ); + trap_SendConsoleCommand( "menu tremulous_alien_dialog\n" ); + break; + case MN_A_HOVEL_OCCUPIED: trap_Cvar_Set( "ui_dialog", "This Hovel is occupied by another builder. Please find or build " "another." ); |