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 1050005 commit 044f5bdCopy full SHA for 044f5bd
src/main/kotlin/dev/deftu/gradle/utils/mcinfo/MinecraftInfo.kt
@@ -62,6 +62,8 @@ sealed class MinecraftInfo {
62
63
/** inherits all maps and/or versions from the given info */
64
fun inherit(other: MinecraftInfo) {
65
+ other.initialize() // ensure the other is initialized
66
+
67
this.fabricLoaderVersion = other.fabricLoaderVersion
68
this.fabricLanguageKotlinVersion = other.fabricLanguageKotlinVersion
69
this.fabricYarnVersions.putAll(other.fabricYarnVersions)
0 commit comments