diff options
author | Tim Angus <tim@ngus.net> | 2001-03-31 22:04:08 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-03-31 22:04:08 +0000 |
commit | f5392aaef785aeaf7eb56b448c6deeb42fea00e2 (patch) | |
tree | 734a3171faf12bdb709cf9f3f88047c1ddbaaafb /src/game/g_active.c | |
parent | 370ae26d5bb2aa7c17588b3744ebc3ac01918df7 (diff) |
Added to and reorganised menus
Diffstat (limited to 'src/game/g_active.c')
-rw-r--r-- | src/game/g_active.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_active.c b/src/game/g_active.c index 514224c9..18da18d7 100644 --- a/src/game/g_active.c +++ b/src/game/g_active.c @@ -365,11 +365,11 @@ void SpectatorThink( gentity_t *ent, usercmd_t *ucmd ) { } else if( client->pers.pteam == PTE_DROIDS ) { - G_AddPredictableEvent( ent, EV_MENU, MN_DROID ); + G_AddPredictableEvent( ent, EV_MENU, MN_D_CLASS ); } else if( client->pers.pteam == PTE_HUMANS ) { - G_AddPredictableEvent( ent, EV_MENU, MN_HUMAN ); + G_AddPredictableEvent( ent, EV_MENU, MN_H_SPAWN ); } } |