Fix forge implementation version

This commit is contained in:
Lukas Rieger (Blue) 2022-01-15 01:28:55 +01:00
parent 622f461c81
commit 745f18d3e9
No known key found for this signature in database
GPG Key ID: 2D09EC5ED2687FF2
2 changed files with 2 additions and 2 deletions

View File

@ -92,7 +92,7 @@ public class ForgeMod implements ServerInterface {
Logger.global.logWarning("Failed to derive version from version-string '" + versionString +
"', falling back to version: " + mcVersion.getVersionString());
}
this.pluginInstance = new Plugin(mcVersion, "forge-1.16.2", this);
this.pluginInstance = new Plugin(mcVersion, "forge-1.17.1", this);
this.worldUUIDs = new ConcurrentHashMap<>();
this.eventForwarder = new ForgeEventForwarder();

View File

@ -92,7 +92,7 @@ public class ForgeMod implements ServerInterface {
Logger.global.logWarning("Failed to derive version from version-string '" + versionString +
"', falling back to version: " + mcVersion.getVersionString());
}
this.pluginInstance = new Plugin(mcVersion, "forge-1.16.2", this);
this.pluginInstance = new Plugin(mcVersion, "forge-1.18.1", this);
this.worldUUIDs = new ConcurrentHashMap<>();
this.eventForwarder = new ForgeEventForwarder();