Skip to content

Commit 97c6640

Browse files
committed
Change metrics implementation key for paper and spigot
1 parent 2c341fc commit 97c6640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

implementations/paper/src/main/java/de/bluecolored/bluemap/bukkit/BukkitPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public BukkitPlugin() {
9494
this.scheduledTasks = Collections.synchronizedCollection(Collections.newSetFromMap(new WeakHashMap<>()));
9595

9696
this.eventForwarder = new EventForwarder();
97-
this.pluginInstance = new Plugin("bukkit", this);
97+
this.pluginInstance = new Plugin("paper", this);
9898
this.commands = new BukkitCommands(this.pluginInstance);
9999

100100
this.worlds = Caffeine.newBuilder()

implementations/spigot/src/main/java/de/bluecolored/bluemap/bukkit/BukkitPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public BukkitPlugin() {
9090
this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>());
9191

9292
this.eventForwarder = new EventForwarder();
93-
this.pluginInstance = new Plugin("bukkit", this);
93+
this.pluginInstance = new Plugin("spigot", this);
9494
this.commands = new BukkitCommands(this.pluginInstance);
9595

9696
this.worlds = Caffeine.newBuilder()

0 commit comments

Comments
 (0)