We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3775e9d commit e56c8abCopy full SHA for e56c8ab
1 file changed
src/common/java/net/minecraftforge/gradle/common/util/Utils.java
@@ -543,7 +543,7 @@ public static String getIntellijOutName(final SourceSet sourceSet) {
543
return sourceSet.getName().equals(SourceSet.MAIN_SOURCE_SET_NAME) ? "production" : sourceSet.getName();
544
}
545
546
- private static final MinecraftVersion OFFICIAL_RUNTIME_START = MinecraftVersion.from("1.21.5");
+ private static final MinecraftVersion OFFICIAL_RUNTIME_START = MinecraftVersion.from("1.20.5");
547
public static boolean isOfficialRuntime(String version) {
548
return MinecraftVersion.from(version).compareTo(OFFICIAL_RUNTIME_START) >= 0;
549
0 commit comments