mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
NuclearW is a mean person who hates other peoples' code
This commit is contained in:
parent
1db9a554dc
commit
920bdde135
@ -198,7 +198,6 @@ public class MetricsManager {
|
||||
|
||||
if (Config.getInstance().getExperienceGainsGlobalMultiplier() > 1.0) {
|
||||
globalMultiplierGraphFuzzy.addPlotter(new Metrics.Plotter("Higher") {
|
||||
|
||||
@Override
|
||||
public int getValue() {
|
||||
return 1;
|
||||
@ -207,7 +206,6 @@ public class MetricsManager {
|
||||
}
|
||||
else if (Config.getInstance().getExperienceGainsGlobalMultiplier() < 1.0) {
|
||||
globalMultiplierGraphFuzzy.addPlotter(new Metrics.Plotter("Lower") {
|
||||
|
||||
@Override
|
||||
public int getValue() {
|
||||
return 1;
|
||||
@ -216,26 +214,18 @@ public class MetricsManager {
|
||||
}
|
||||
else {
|
||||
globalMultiplierGraphFuzzy.addPlotter(new Metrics.Plotter("Default") {
|
||||
|
||||
@Override
|
||||
public int getValue() {
|
||||
return 1;
|
||||
}
|
||||
});
|
||||
}
|
||||
globalMultiplierGraph.addPlotter(new Metrics.Plotter(Config.getInstance().getExperienceGainsGlobalMultiplier() + "") {
|
||||
@Override
|
||||
public int getValue() {
|
||||
return 1;
|
||||
}
|
||||
});
|
||||
|
||||
//GlobalCurveModifier Fuzzy Logic Numbers
|
||||
Graph globalCurveMultiplierGraphFuzzy = metrics.createGraph("Global Curve Multiplier Fuzz");
|
||||
|
||||
if (Config.getInstance().getFormulaMultiplierCurve() > 20.0) {
|
||||
globalCurveMultiplierGraphFuzzy.addPlotter(new Metrics.Plotter("Higher") {
|
||||
|
||||
@Override
|
||||
public int getValue() {
|
||||
return 1;
|
||||
@ -244,7 +234,6 @@ public class MetricsManager {
|
||||
}
|
||||
else if (Config.getInstance().getFormulaMultiplierCurve() < 20.0) {
|
||||
globalCurveMultiplierGraphFuzzy.addPlotter(new Metrics.Plotter("Lower") {
|
||||
|
||||
@Override
|
||||
public int getValue() {
|
||||
return 1;
|
||||
@ -253,7 +242,6 @@ public class MetricsManager {
|
||||
}
|
||||
else {
|
||||
globalCurveMultiplierGraphFuzzy.addPlotter(new Metrics.Plotter("Default") {
|
||||
|
||||
@Override
|
||||
public int getValue() {
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user