Clean the build script a bit

This commit is contained in:
Username404-59 2021-04-21 16:31:32 +02:00
parent c3b7ae6e3e
commit 2e3b38cf15
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 3 additions and 3 deletions

View File

@ -141,13 +141,13 @@ allprojects {
from(this) from(this)
} }
} }
val ModProperties = mapOf<String, String>( val modProperties = mapOf(
"mod_version" to (rootProject.version as String), "mod_version" to (rootProject.version as String),
"minecraft_version" to mcBase "minecraft_version" to mcBase
) )
inputs.properties(ModProperties) inputs.properties(modProperties)
filesNotMatching(listOf("*.png")) { filesNotMatching(listOf("*.png")) {
expand(ModProperties) expand(modProperties)
} }
} }
} }