diff options
Diffstat (limited to 'src/cgame/cg_weapons.c')
-rw-r--r-- | src/cgame/cg_weapons.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_weapons.c b/src/cgame/cg_weapons.c index cc1f835e..470d1603 100644 --- a/src/cgame/cg_weapons.c +++ b/src/cgame/cg_weapons.c @@ -1200,7 +1200,7 @@ void CG_DrawWeaponSelect( void ) { x = 10; y = 10; - for ( i = WP_GAUNTLET; i < WP_NUM_WEAPONS; i++ ) { + for ( i = WP_NONE + 1; i < WP_NUM_WEAPONS; i++ ) { if( !BG_gotWeapon( i, cg.snap->ps.stats ) ) continue; |