summaryrefslogtreecommitdiff
path: root/src/cgame
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2001-03-23 04:09:29 +0000
committerTim Angus <tim@ngus.net>2001-03-23 04:09:29 +0000
commit023bde0d5ba726016507ce9e63e475a4e2e88a30 (patch)
treea3c61888f64cd9377c7271dd1714b5c75dc06d9e /src/cgame
parent8db4c8343e6ee7a46a387a368e738cd51c4529e5 (diff)
Added simple dialog boxes to build errors
Diffstat (limited to 'src/cgame')
-rw-r--r--src/cgame/cg_event.c12
1 files changed, 12 insertions, 0 deletions
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++ )