Skip to content

Commit

Permalink
rebalance ohj a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed Jun 4, 2020
1 parent c5f9b7f commit 24f714f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2814,7 +2814,7 @@ struct OHJumpModGuyThing
float max_mod = 1.f;

float max_seq_weight = 0.65f;
float max_seq_pool = 1.35f;
float max_seq_pool = 1.25f;
float max_seq_scaler = 1.f;

float prop_pool = 1.4f;
Expand Down Expand Up @@ -3018,7 +3018,7 @@ struct OHJumpModGuyThing

pmod = weighted_average(
max_seq_component, prop_component, max_seq_weight, 1.f);
pmod = CalcClamp(fastsqrt(pmod), min_mod, max_mod);
pmod = CalcClamp(pmod, min_mod, max_mod);

doot[OHJumpMod][i] = pmod;
set_debug_output(doot, i);
Expand Down

0 comments on commit 24f714f

Please sign in to comment.