Browse Source

Have correct bStats data point to a new id

nossr50 4 years ago
parent
commit
a85fd024b2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/java/com/gmail/nossr50/mcMMO.java

+ 2 - 2
src/main/java/com/gmail/nossr50/mcMMO.java

@@ -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) {