Divide implementation-versions further

This commit is contained in:
Blue (Lukas Rieger) 2020-09-04 11:57:26 +02:00
parent c51eca74d9
commit b1fd91681e
6 changed files with 6 additions and 6 deletions

View File

@ -78,7 +78,7 @@ public class FabricMod implements ModInitializer, ServerInterface {
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);

View File

@ -79,7 +79,7 @@ public class FabricMod implements ModInitializer, ServerInterface {
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);

View File

@ -79,7 +79,7 @@ public class FabricMod implements ModInitializer, ServerInterface {
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);

View File

@ -82,7 +82,7 @@ public class ForgeMod implements ServerInterface {
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);

View File

@ -82,7 +82,7 @@ public class ForgeMod implements ServerInterface {
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);

View File

@ -83,7 +83,7 @@ public class ForgeMod implements ServerInterface {
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);