From c7d3bd75523726fc4f5230a9c23b5f31537fc5a8 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sun, 31 Aug 2003 01:18:40 +0000 Subject: * Fixed hovel problems --- src/cgame/cg_players.c | 4 ++++ src/cgame/cg_servercmds.c | 6 ++++++ 2 files changed, 10 insertions(+) (limited to 'src/cgame') diff --git a/src/cgame/cg_players.c b/src/cgame/cg_players.c index f7042456..1cce4788 100644 --- a/src/cgame/cg_players.c +++ b/src/cgame/cg_players.c @@ -1972,6 +1972,10 @@ void CG_Player( centity_t *cent ) if( !ci->infoValid ) return; + //don't draw + if( es->eFlags & EF_NODRAW ) + return; + // get the player model information renderfx = 0; if( es->number == cg.snap->ps.clientNum ) diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c index 31685518..98af076a 100644 --- a/src/cgame/cg_servercmds.c +++ b/src/cgame/cg_servercmds.c @@ -678,6 +678,12 @@ void CG_Menu( int menu ) trap_SendConsoleCommand( "menu tremulous_alien_dialog\n" ); break; + case MN_A_HOVEL_EXIT: + trap_Cvar_Set( "ui_dialog", "The exit to this Hovel will always be blocked. Please choose " + "a more suitable location." ); + trap_SendConsoleCommand( "menu tremulous_alien_dialog\n" ); + break; + case MN_A_INFEST: trap_Cvar_Set( "ui_currentClass", va( "%d %d", cg.snap->ps.stats[ STAT_PCLASS ], cg.snap->ps.persistant[ PERS_CREDIT ] ) ); -- cgit