From 023bde0d5ba726016507ce9e63e475a4e2e88a30 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Fri, 23 Mar 2001 04:09:29 +0000 Subject: Added simple dialog boxes to build errors --- src/cgame/cg_event.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/cgame') diff --git a/src/cgame/cg_event.c b/src/cgame/cg_event.c index a2be137c..94c3498d 100644 --- a/src/cgame/cg_event.c +++ b/src/cgame/cg_event.c @@ -450,6 +450,18 @@ void CG_Menu( int eventParm ) trap_SendConsoleCommand( "menu hmcumenu\n" ); break; + case MN_NOROOM: + trap_SendConsoleCommand( "menu hnoroom\n" ); + break; + + case MN_NOCREEP: + trap_SendConsoleCommand( "menu dnocreep\n" ); + break; + + case MN_REACTOR: + trap_SendConsoleCommand( "menu hreactor\n" ); + break; + case MN_INFEST: strcpy( menuDef, "5,5|Infest|0.8,0,0.8,1|0.6,0,0.6,0.8|1,0,1,1|1|16|" ); for( i = PCL_NONE + 1; i < PCL_NUM_CLASSES; i++ ) -- cgit