From d935b1ba18d3585e468175835693c2a04c23d5a7 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Wed, 21 Oct 2009 07:58:54 +0000 Subject: * Add options in the ingame UI to callvote sudden_death and callvote nextmap (Exclamation) * Prevent up arrow, down arrow, tab, and mouse buttons from unexpectedly sending Say: menu text * Fix a crash introduced by r1813 when using teamsay on a map without location entities --- src/cgame/cg_servercmds.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/cgame') diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c index 6c43782a..0b562360 100644 --- a/src/cgame/cg_servercmds.c +++ b/src/cgame/cg_servercmds.c @@ -947,7 +947,8 @@ static void CG_Say( int clientNum, saymode_t mode, const char *text ) centity_t *locent; locent = CG_GetPlayerLocation( ); - locationNum = locent->currentState.generic1; + if( locent ) + locationNum = locent->currentState.generic1; } else locationNum = ci->location; -- cgit