From 60d41da2ac6e9c9965e73963522a90aa62863b5d Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sun, 18 Jun 2006 14:57:08 +0000 Subject: * Move Mass Driver zoom control to secondary attack * Remove +zoom and -zoom altogether --- src/game/bg_pmove.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/game') diff --git a/src/game/bg_pmove.c b/src/game/bg_pmove.c index feac25b1..4afdfaac 100644 --- a/src/game/bg_pmove.c +++ b/src/game/bg_pmove.c @@ -2886,6 +2886,18 @@ static void PM_Weapon( void ) } break; + case WP_MASS_DRIVER: + attack1 = pm->cmd.buttons & BUTTON_ATTACK; + // attack2 is handled on the client for zooming (cg_view.c) + + if( !attack1 ) + { + pm->ps->weaponTime = 0; + pm->ps->weaponstate = WEAPON_READY; + return; + } + break; + default: //by default primary and secondary attacks are allowed attack1 = pm->cmd.buttons & BUTTON_ATTACK; -- cgit