From 74f8c10ce5e8dcc675fc4d64f159d76d8a4c0939 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Sat, 3 Oct 2009 12:33:20 +0000 Subject: * (bug 3408) Slightly reorder alien evolution failure reasons (David Severwright) --- src/game/g_cmds.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'src/game') diff --git a/src/game/g_cmds.c b/src/game/g_cmds.c index a71501b6..deb92e1a 100644 --- a/src/game/g_cmds.c +++ b/src/game/g_cmds.c @@ -1749,10 +1749,11 @@ void Cmd_Class_f( gentity_t *ent ) if( ent->client->pers.classSelection != PCL_NONE ) { int cost; - - if( ent->client->ps.eFlags & EF_WALLCLIMB ) + + //check that we have an overmind + if( !level.overmindPresent ) { - G_TriggerMenu( clientNum, MN_A_EVOLVEWALLWALK ); + G_TriggerMenu( clientNum, MN_A_NOOVMND_EVOLVE ); return; } @@ -1772,10 +1773,11 @@ void Cmd_Class_f( gentity_t *ent ) return; } } - - if( !level.overmindPresent ) + + //check that we are not wallwalking + if( ent->client->ps.eFlags & EF_WALLCLIMB ) { - G_TriggerMenu( clientNum, MN_A_NOOVMND_EVOLVE ); + G_TriggerMenu( clientNum, MN_A_EVOLVEWALLWALK ); return; } -- cgit