diff --git a/1.10.2/build.gradle b/1.10.2/build.gradle index 210708e..b9cb84f 100644 --- a/1.10.2/build.gradle +++ b/1.10.2/build.gradle @@ -53,7 +53,7 @@ minecraft { compileKotlin.doFirst { def target = "src/main/kotlin/matterlink/gen" copy { - from("../src/templates/kotlin/matterlink/Constants.kt") + from("src/templates/kotlin/matterlink/Constants.kt") into(target) } ant.replaceregexp(match:'@VERSION@', replace: project.mod_version, flags:'g', byline:true) { diff --git a/1.11.2/build.gradle b/1.11.2/build.gradle index ab58ce8..8387a2e 100644 --- a/1.11.2/build.gradle +++ b/1.11.2/build.gradle @@ -52,7 +52,7 @@ minecraft { compileKotlin.doFirst { def target = "src/main/kotlin/matterlink/gen" copy { - from("../src/templates/kotlin/matterlink/Constants.kt") + from("src/templates/kotlin/matterlink/Constants.kt") into(target) } ant.replaceregexp(match:'@VERSION@', replace: project.mod_version, flags:'g', byline:true) {