From 1eee6be0ea1aeec679cff80fea36a91e6d0c788f Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Thu, 18 Mar 2004 16:44:54 +0000 Subject: * 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 --- src/cgame/cg_servercmds.c | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) (limited to 'src/cgame') 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." ); -- cgit