File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
AreaShop/src/main/java/me/wiefferink/areashop Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -183,8 +183,8 @@ public void onEnable() {
183183
184184 // Setup NMS Impl
185185 Version currentServerVersion = VersionUtil .parseMinecraftVersion (Bukkit .getBukkitVersion ());
186- if (currentServerVersion .versionData ().isOlderThan (VersionUtil .MC_1_20_6 )) {
187- error ("Unsupported minecraft version: " + currentServerVersion + "! Minimum is 1.20.6 " );
186+ if (currentServerVersion .versionData ().isOlderThan (VersionUtil .MC_1_21 )) {
187+ error ("Unsupported minecraft version: " + currentServerVersion + "! Minimum is 1.21 " );
188188 shutdownOnError ();
189189 return ;
190190 }
Original file line number Diff line number Diff line change 55
66public class VersionUtil {
77
8- public static final VersionData MC_1_20_6 = new VersionData (1 , 20 , 6 );
8+ public static final VersionData MC_1_21 = new VersionData (1 , 21 );
99
1010 @ Nonnull
1111 public static String padTrailingZero (@ Nonnull String minecraftVersion ) {
You can’t perform that action at this time.
0 commit comments