summaryrefslogtreecommitdiff
path: root/src/cgame/cg_weapons.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgame/cg_weapons.c')
-rw-r--r--src/cgame/cg_weapons.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cgame/cg_weapons.c b/src/cgame/cg_weapons.c
index 3b24ee11..1f06c35a 100644
--- a/src/cgame/cg_weapons.c
+++ b/src/cgame/cg_weapons.c
@@ -1475,12 +1475,12 @@ static qboolean CG_WeaponSelectable( int i )
BG_unpackAmmoArray( i, cg.snap->ps.ammo, cg.snap->ps.powerups, &ammo, &clips, &maxclips );
- if ( !ammo && !clips && !BG_FindInfinteAmmoForWeapon( i ) ) {
- return qfalse;
- }
- if ( !BG_gotWeapon( i, cg.snap->ps.stats ) ) {
+ //TA: this is a pain in the ass
+/* if( !ammo && !clips && !BG_FindInfinteAmmoForWeapon( i ) )
+ return qfalse;*/
+
+ if( !BG_gotWeapon( i, cg.snap->ps.stats ) )
return qfalse;
- }
return qtrue;
}