Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Reduce jetpack horizontal push in air; Remove ground boost; halve t…
…he size of the fuel tank
  • Loading branch information
AfterShockFF authored and squeek502 committed Jul 18, 2016
1 parent 48a3321 commit dbc4df1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions game_shared/ff/ff_player_shared.cpp
Expand Up @@ -139,7 +139,7 @@ ConVar ffdev_jetpack_chargetime("ffdev_jetpack_chargetime", "0.0", FCVAR_REPLICA

ConVar ffdev_jetpack_verticalpush_offground("ffdev_jetpack_verticalpush_offground", "10", FCVAR_REPLICATED | FCVAR_CHEAT);
#define JETPACK_VERTICALPUSH_OFFGROUND ffdev_jetpack_verticalpush_offground.GetFloat()
ConVar ffdev_jetpack_horizontalpush_offground("ffdev_jetpack_horizontalpush_offground", "5", FCVAR_REPLICATED | FCVAR_CHEAT);
ConVar ffdev_jetpack_horizontalpush_offground("ffdev_jetpack_horizontalpush_offground", "0.3", FCVAR_REPLICATED | FCVAR_CHEAT);
#define JETPACK_HORIZONTALPUSH_OFFGROUND ffdev_jetpack_horizontalpush_offground.GetFloat()
ConVar ffdev_jetpack_horizontalsetvelocity("ffdev_jetpack_horizontalsetvelocity", "1", FCVAR_REPLICATED | FCVAR_CHEAT);
#define JETPACK_HORIZONTALSETVELOCITY ffdev_jetpack_horizontalsetvelocity.GetBool()
Expand All @@ -148,9 +148,9 @@ ConVar ffdev_jetpack_verticalsetvelocity("ffdev_jetpack_verticalsetvelocity", "1

ConVar ffdev_jetpack_fuelboostcost("ffdev_jetpack_fuelboostcost", "50", FCVAR_REPLICATED | FCVAR_CHEAT); // Total fuel is 100
#define JETPACK_FUELBOOSTCOST ffdev_jetpack_fuelboostcost.GetInt()
ConVar ffdev_jetpack_fuelrechargetime("ffdev_jetpack_fuelrechargetime", "0.1", FCVAR_REPLICATED | FCVAR_CHEAT);
ConVar ffdev_jetpack_fuelrechargetime("ffdev_jetpack_fuelrechargetime", "0.2", FCVAR_REPLICATED | FCVAR_CHEAT);
#define JETPACK_FUELRECHARGETIME ffdev_jetpack_fuelrechargetime.GetFloat()
ConVar ffdev_jetpack_fuelhovercost("ffdev_jetpack_fuelhovercost", "0.3", FCVAR_REPLICATED | FCVAR_CHEAT);
ConVar ffdev_jetpack_fuelhovercost("ffdev_jetpack_fuelhovercost", "0.6", FCVAR_REPLICATED | FCVAR_CHEAT);
#define JETPACK_FUELHOVERCOST ffdev_jetpack_fuelhovercost.GetFloat()

//ConVar ffdev_ac_bulletsize( "ffdev_ac_bulletsize", "1.0", FCVAR_FF_FFDEV_REPLICATED );
Expand Down Expand Up @@ -730,7 +730,7 @@ void CFFPlayer::ClassSpecificSkill()
break;

case CLASS_PYRO:
JetpackClick();
//JetpackClick(); // removing ground clicking for now, hold in air only
break;

#ifdef CLIENT_DLL
Expand Down

0 comments on commit dbc4df1

Please sign in to comment.