diff --git a/implementations/fabric-1.15.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java b/implementations/fabric-1.15.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java index b3b688de..7c5176d8 100644 --- a/implementations/fabric-1.15.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java +++ b/implementations/fabric-1.15.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java @@ -78,7 +78,7 @@ public FabricMod() { this.onlinePlayerMap = new ConcurrentHashMap<>(); this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>()); - pluginInstance = new Plugin(MinecraftVersion.MC_1_15, "fabric", this); + pluginInstance = new Plugin(MinecraftVersion.MC_1_15, "fabric-1.15.2", this); this.worldUUIDs = new ConcurrentHashMap<>(); this.eventForwarder = new FabricEventForwarder(this); diff --git a/implementations/fabric-1.16.1/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java b/implementations/fabric-1.16.1/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java index 9466c681..7f13d990 100644 --- a/implementations/fabric-1.16.1/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java +++ b/implementations/fabric-1.16.1/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java @@ -79,7 +79,7 @@ public FabricMod() { this.onlinePlayerMap = new ConcurrentHashMap<>(); this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>()); - pluginInstance = new Plugin(MinecraftVersion.MC_1_16, "fabric", this); + pluginInstance = new Plugin(MinecraftVersion.MC_1_16, "fabric-1.16.1", this); this.worldUUIDs = new ConcurrentHashMap<>(); this.eventForwarder = new FabricEventForwarder(this); diff --git a/implementations/fabric-1.16.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java b/implementations/fabric-1.16.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java index 9466c681..b0fb82f7 100644 --- a/implementations/fabric-1.16.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java +++ b/implementations/fabric-1.16.2/src/main/java/de/bluecolored/bluemap/fabric/FabricMod.java @@ -79,7 +79,7 @@ public FabricMod() { this.onlinePlayerMap = new ConcurrentHashMap<>(); this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>()); - pluginInstance = new Plugin(MinecraftVersion.MC_1_16, "fabric", this); + pluginInstance = new Plugin(MinecraftVersion.MC_1_16, "fabric-1.16.2", this); this.worldUUIDs = new ConcurrentHashMap<>(); this.eventForwarder = new FabricEventForwarder(this); diff --git a/implementations/forge-1.14.4/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java b/implementations/forge-1.14.4/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java index 8b8560b5..ca8a6f47 100644 --- a/implementations/forge-1.14.4/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java +++ b/implementations/forge-1.14.4/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java @@ -82,7 +82,7 @@ public ForgeMod() { this.onlinePlayerMap = new ConcurrentHashMap<>(); this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>()); - this.pluginInstance = new Plugin(MinecraftVersion.MC_1_14, "forge", this); + this.pluginInstance = new Plugin(MinecraftVersion.MC_1_14, "forge-1.14.4", this); this.worldUUIDs = new ConcurrentHashMap<>(); this.eventForwarder = new ForgeEventForwarder(this); diff --git a/implementations/forge-1.15.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java b/implementations/forge-1.15.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java index 570e628e..ee22bcfd 100644 --- a/implementations/forge-1.15.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java +++ b/implementations/forge-1.15.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java @@ -82,7 +82,7 @@ public ForgeMod() { this.onlinePlayerMap = new ConcurrentHashMap<>(); this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>()); - this.pluginInstance = new Plugin(MinecraftVersion.MC_1_15, "forge", this); + this.pluginInstance = new Plugin(MinecraftVersion.MC_1_15, "forge-1.15.2", this); this.worldUUIDs = new ConcurrentHashMap<>(); this.eventForwarder = new ForgeEventForwarder(this); diff --git a/implementations/forge-1.16.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java b/implementations/forge-1.16.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java index 438148bf..c66ae57b 100644 --- a/implementations/forge-1.16.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java +++ b/implementations/forge-1.16.2/src/main/java/de/bluecolored/bluemap/forge/ForgeMod.java @@ -83,7 +83,7 @@ public ForgeMod() { this.onlinePlayerMap = new ConcurrentHashMap<>(); this.onlinePlayerList = Collections.synchronizedList(new ArrayList<>()); - this.pluginInstance = new Plugin(MinecraftVersion.MC_1_16, "forge", this); + this.pluginInstance = new Plugin(MinecraftVersion.MC_1_16, "forge-1.16.2", this); this.worldUUIDs = new ConcurrentHashMap<>(); this.eventForwarder = new ForgeEventForwarder(this);