mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-08-03 13:05:30 +02:00
NuclearW is a mean person who hates other peoples' code
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user