diff options
Diffstat (limited to 'src/game/bg_pmove.c')
-rw-r--r-- | src/game/bg_pmove.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index 3c3983ea..2fc225c2 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -2819,9 +2819,14 @@ static void PM_Weapon( void ) if( ( attack1 || pm->ps->stats[ STAT_MISC ] == 0 ) && !attack2 && !attack3 ) { - pm->ps->weaponTime = 0; - pm->ps->weaponstate = WEAPON_READY; - return; + if( pm->ps->stats[ STAT_MISC ] < LCANNON_TOTAL_CHARGE ) + { + pm->ps->weaponTime = 0; + pm->ps->weaponstate = WEAPON_READY; + return; + } + else + attack1 = !attack1; } //erp this looks confusing |