summaryrefslogtreecommitdiff
path: root/src/game/bg_pmove.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/bg_pmove.c')
-rw-r--r--src/game/bg_pmove.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c
index 2a472cdc..7c948e91 100644
--- a/src/game/bg_pmove.c
+++ b/src/game/bg_pmove.c
@@ -2325,7 +2325,17 @@ static void PM_Weapon( void )
if( attack3 )
{
if( BG_WeaponHasThirdMode( pm->ps->weapon ) )
+ {
+ //hacky special case for slowblob
+ if( pm->ps->weapon == WP_POUNCE_UPG && !ammo )
+ {
+ PM_AddEvent( EV_NOAMMO );
+ pm->ps->weaponTime += 200;
+ return;
+ }
+
PM_AddEvent( EV_FIRE_WEAPON3 );
+ }
else
{
pm->ps->weaponTime = 0;
@@ -2392,6 +2402,12 @@ static void PM_Weapon( void )
BG_packAmmoArray( pm->ps->weapon, pm->ps->ammo, pm->ps->powerups, ammo, clips, maxclips );
}
+ else if( pm->ps->weapon == WP_POUNCE_UPG && attack3 )
+ {
+ //special case for slowblob
+ ammo--;
+ BG_packAmmoArray( pm->ps->weapon, pm->ps->ammo, pm->ps->powerups, ammo, clips, maxclips );
+ }
addTime = BG_FindRepeatRateForWeapon( pm->ps->weapon );