Have correct bStats data point to a new id

This commit is contained in:
nossr50 2021-01-21 15:00:42 -08:00
parent 6e63007068
commit a85fd024b2

View File

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