mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2025-01-27 10:41:21 +01:00
Divide implementation-versions further
This commit is contained in:
parent
c51eca74d9
commit
b1fd91681e
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user