Fixed an error in bstats where Retro Mode was reported as Standard mode and vice versa

I might be the most dyslexic person ever
This commit is contained in:
nossr50
2021-01-21 14:56:45 -08:00
parent 67f29d52b3
commit 6c5eb72ab4
3 changed files with 2 additions and 5 deletions

View File

@@ -257,9 +257,9 @@ public class mcMMO extends JavaPlugin {
metrics.addCustomChart(new Metrics.SimplePie("version", () -> getDescription().getVersion()));
if(Config.getInstance().getIsRetroMode())
metrics.addCustomChart(new Metrics.SimplePie("scaling", () -> "Standard"));
else
metrics.addCustomChart(new Metrics.SimplePie("scaling", () -> "Retro"));
else
metrics.addCustomChart(new Metrics.SimplePie("scaling", () -> "Standard"));
}
}
catch (Throwable t) {