Skip to content

Commit

Permalink
make hs count against js rating (we want mutual exclusion)
Browse files Browse the repository at this point in the history
  • Loading branch information
MinaciousGrace committed May 9, 2020
1 parent f330e6f commit 7099788
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Etterna/Globals/MinaCalc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,8 @@ Hand::CalcInternal(float& gotpoints, float& x, int ss, bool stam, bool debug)
case Skill_Jumpstream:
adj_diff[i] = soap[BaseNPS][i] * doot[Jump][i] *
doot[Chaos][i] / doot[Roll][i] /
sqrt(doot[OHJump][i]) * doot[TheThing][i];
sqrt(doot[OHJump][i]) * doot[TheThing][i] /
max(doot[HS][i], 1.f);
break;
// hs downscales anything without some hands
case Skill_Handstream:
Expand Down

0 comments on commit 7099788

Please sign in to comment.