diff options
author | Mikko Tiusanen <ams@daug.net> | 2014-09-02 23:22:24 +0300 |
---|---|---|
committer | Mikko Tiusanen <ams@daug.net> | 2014-09-02 23:22:24 +0300 |
commit | c9cd49156309f29a8576ac17788dfd6ead583cc4 (patch) | |
tree | a525706c9222214e3cf36eac63ba689ad80ddf65 /src/game/g_active.c | |
parent | fd0c5a395999655866303cd54ce6e6d65b00c0a7 (diff) |
Hummel can now stop mid-air by using the walk key.
Diffstat (limited to 'src/game/g_active.c')
-rw-r--r-- | src/game/g_active.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_active.c b/src/game/g_active.c index 3c888a6..af29923 100644 --- a/src/game/g_active.c +++ b/src/game/g_active.c @@ -1754,7 +1754,7 @@ void ClientThink_real( gentity_t *ent ) client->ps.pm_type = PM_GRABBED; else if( BG_InventoryContainsUpgrade( UP_JETPACK, client->ps.stats ) && BG_UpgradeIsActive( UP_JETPACK, client->ps.stats ) ) client->ps.pm_type = PM_JETPACK; - else if( client->ps.weapon == WP_ALEVEL5 /*&& client->buttons & BUTTON_WALKING*/ ) + else if( client->ps.weapon == WP_ALEVEL5 ) //hummel fly client->ps.pm_type = PM_HUMMEL; else |