diff --git a/build.gradle.kts b/build.gradle.kts index 2a1626a..cbb556b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -141,13 +141,13 @@ allprojects { from(this) } } - val ModProperties = mapOf( + val modProperties = mapOf( "mod_version" to (rootProject.version as String), "minecraft_version" to mcBase ) - inputs.properties(ModProperties) + inputs.properties(modProperties) filesNotMatching(listOf("*.png")) { - expand(ModProperties) + expand(modProperties) } } }