Per-world noise gen is no longer dumb

This commit is contained in:
dfsek
2020-11-16 21:44:49 -07:00
parent 567b06fd3f
commit deb7db9b25
14 changed files with 172 additions and 118 deletions
+1
View File
@@ -60,6 +60,7 @@ val mainSourceSet: SourceSet = sourceSets["main"]
val tokenizeJavaSources = task<Copy>(name = "tokenizeJavaSources") {
from(mainSourceSet.allSource) {
include("**/plugin.yml")
println("version: $versionObj")
val tokens = mapOf("VERSION" to versionObj.toString())
filter(org.apache.tools.ant.filters.ReplaceTokens::class, "tokens" to tokens)