From 800c30e91c1678990cd91a99667c0330934cafae Mon Sep 17 00:00:00 2001 From: thatsIch Date: Mon, 13 Apr 2015 12:25:54 +0200 Subject: [PATCH] Fixes #1271: Added missing pack.mcmeta Was missing in the resource management of the build script to be handled --- build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle b/build.gradle index a7683c6af..162dfe263 100644 --- a/build.gradle +++ b/build.gradle @@ -112,5 +112,6 @@ processResources { from(sourceSets.main.resources.srcDirs) { include 'mcmod.info' expand 'version': project.version, 'mcversion': config.minecraft_version + include 'pack.mcmeta' } } \ No newline at end of file