Set javaVer to 11 since forge doesn't support java 14 mixins
This commit is contained in:
parent
79d970612d
commit
6b64bb3095
|
@ -1,3 +1,3 @@
|
|||
# SnowyGUI
|
||||
|
||||
This mod requires fabric-language-kotlin on fabric, kotlinforforge on forge **and also needs Java 14 or higher**.
|
||||
This mod requires fabric-language-kotlin on fabric, kotlinforforge on forge **and also needs Java 11 or higher**.
|
|
@ -86,7 +86,7 @@ subprojects {
|
|||
}
|
||||
}
|
||||
|
||||
val javaVer: String = "14"
|
||||
val javaVer: String = "11"
|
||||
val kotlinVer = rootProject.property("kotlin_stdlib_version").toString() + ".0"
|
||||
val mcBase: String = rootProject.architectury.minecraft.dropLast(2)
|
||||
allprojects {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"required": true,
|
||||
"package": "fr.username404.snowygui.mixins",
|
||||
"compatibilityLevel": "JAVA_14",
|
||||
"compatibilityLevel": "JAVA_11",
|
||||
"client": [
|
||||
"KeysAccessor",
|
||||
"KeyMappings",
|
||||
|
|
Loading…
Reference in New Issue