Change metrics implementation key for paper and spigot

This commit is contained in:
Lukas Rieger (Blue) 2024-02-23 21:52:41 +01:00
parent 2c341fc894
commit 97c6640721
No known key found for this signature in database
GPG Key ID: AA33883B1BBA03E6
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ public class BukkitPlugin extends JavaPlugin implements Server, Listener {
this.scheduledTasks = Collections.synchronizedCollection(Collections.newSetFromMap(new WeakHashMap<>()));
this.eventForwarder = new EventForwarder();
this.pluginInstance = new Plugin("bukkit", this);
this.pluginInstance = new Plugin("paper", this);
this.commands = new BukkitCommands(this.pluginInstance);
this.worlds = Caffeine.newBuilder()

View File

@ -90,7 +90,7 @@ public class BukkitPlugin extends JavaPlugin implements Server, Listener {
this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>());
this.eventForwarder = new EventForwarder();
this.pluginInstance = new Plugin("bukkit", this);
this.pluginInstance = new Plugin("spigot", this);
this.commands = new BukkitCommands(this.pluginInstance);
this.worlds = Caffeine.newBuilder()