diff --git a/CommonCore b/CommonCore index a2bb52ab..0fef6c0f 160000 --- a/CommonCore +++ b/CommonCore @@ -1 +1 @@ -Subproject commit a2bb52ab263d518dd6d103ee41ba06bf3bce7f45 +Subproject commit 0fef6c0f8f5499cc3a74aea38d51abbe97ba11c2 diff --git a/src/de/steamwar/bungeecore/ServerStarter.java b/src/de/steamwar/bungeecore/ServerStarter.java index b71fd864..25af0cbf 100644 --- a/src/de/steamwar/bungeecore/ServerStarter.java +++ b/src/de/steamwar/bungeecore/ServerStarter.java @@ -337,7 +337,8 @@ public class ServerStarter { public enum Version { SPIGOT_12("spigot-1.12.2.jar", 12), SPIGOT_15("spigot-1.15.2.jar", 15), - PAPER_19("paper-1.19.3.jar", 19); + PAPER_19("paper-1.19.3.jar", 19), + PAPER_20("paper-1.20.1.jar", 20); private final String serverJar; private final int versionSuffix; diff --git a/src/de/steamwar/bungeecore/commands/BuilderCloudCommand.java b/src/de/steamwar/bungeecore/commands/BuilderCloudCommand.java index f1eb7c03..cb5eb1ba 100644 --- a/src/de/steamwar/bungeecore/commands/BuilderCloudCommand.java +++ b/src/de/steamwar/bungeecore/commands/BuilderCloudCommand.java @@ -26,6 +26,9 @@ public class BuilderCloudCommand extends SWCommand { versionMap.put("19", ServerStarter.Version.PAPER_19); versionMap.put("1.19", ServerStarter.Version.PAPER_19); versionMap.put("1.19.2", ServerStarter.Version.PAPER_19); + versionMap.put("20", ServerStarter.Version.PAPER_20); + versionMap.put("1.20", ServerStarter.Version.PAPER_20); + versionMap.put("1.20.1", ServerStarter.Version.PAPER_20); } @Register(value = "create", description = "BUILDERCLOUD_CREATE_USAGE")