Fixing the RNG display calculations for RetroMode

I temporarily disabled the output for graceful roll in the stats, will be turning that on again in the morning.
This commit is contained in:
nossr50
2019-01-25 01:36:14 -08:00
parent ef9b3d40e9
commit a421bd7e4c
3 changed files with 11 additions and 9 deletions

View File

@ -720,8 +720,8 @@ public class AdvancedConfig extends AutoUpdateConfigLoader {
public double getMaximumProbability(SubSkillType subSkillType) {
double maximumProbability = config.getDouble(subSkillType.getAdvConfigAddress() + ".ChanceMax", 100.0D);
if(mcMMO.isRetroModeEnabled())
maximumProbability *= 10; // It seems weird but our formulas need this
/*if(mcMMO.isRetroModeEnabled())
maximumProbability *= 10; // It seems weird but our formulas need this*/
return maximumProbability;
}