diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-08-01 02:22:13 +0300 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-08-01 03:26:03 +0300 |
commit | df45dd254c4b26f3e0fdb140e370e532f626f8f1 (patch) | |
tree | 030e17c67cbb5129c5b916c35e9df6be71106922 /src/game/g_weapon.c | |
parent | 7e2230cfbd419119ebb06b739a8d3949a563eb73 (diff) |
Added support for 5 stages instead of the traditional 3.
Diffstat (limited to 'src/game/g_weapon.c')
-rw-r--r-- | src/game/g_weapon.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/game/g_weapon.c b/src/game/g_weapon.c index 184949f..a64f0f8 100644 --- a/src/game/g_weapon.c +++ b/src/game/g_weapon.c @@ -1762,11 +1762,11 @@ gclient_t *client; break; case WP_MASS_DRIVER: -if(g_humanStage.integer == S3 && BG_InventoryContainsUpgrade( UP_BATTPACK, ent->client->ps.stats )) -{ - massDriverFire2( ent ); -} - break; + if(g_humanStage.integer == S5 && BG_InventoryContainsUpgrade( UP_BATTPACK, ent->client->ps.stats )) + { + massDriverFire2( ent ); + } + break; case WP_ALEVEL1: case WP_ALEVEL1_UPG: |