add 1.21.1 support

This commit is contained in:
Julian Krings 2024-08-15 18:42:23 +02:00
parent 68ad206252
commit 25b41fe62c
2 changed files with 3 additions and 2 deletions

View File

@ -29,7 +29,8 @@ public class INMS {
private static final Map<String, String> REVISION = Map.of( private static final Map<String, String> REVISION = Map.of(
"1.20.5", "v1_20_R4", "1.20.5", "v1_20_R4",
"1.20.6", "v1_20_R4", "1.20.6", "v1_20_R4",
"1.21", "v1_21_R1" "1.21", "v1_21_R1",
"1.21.1", "v1_21_R1"
); );
//@done //@done
private static final INMSBinding binding = bind(); private static final INMSBinding binding = bind();

View File

@ -37,7 +37,7 @@ public class UtilsSFG {
} }
if (ServerBootSFG.unsuportedversion) { if (ServerBootSFG.unsuportedversion) {
Iris.safeguard(C.RED + "Server Version"); Iris.safeguard(C.RED + "Server Version");
Iris.safeguard(C.RED + "- Iris only supports 1.19.2 > 1.20.6"); Iris.safeguard(C.RED + "- Iris only supports 1.19.2 > 1.21.1");
} }
if (!ServerBootSFG.passedserversoftware) { if (!ServerBootSFG.passedserversoftware) {
Iris.safeguard(C.YELLOW + "Unsupported Server Software"); Iris.safeguard(C.YELLOW + "Unsupported Server Software");