From 80748fb5bc4c087b938849fcdf75065229ee8244 Mon Sep 17 00:00:00 2001 From: Marcel Konrad Date: Wed, 26 Jun 2019 22:39:53 +0200 Subject: [PATCH] Update forge --- build.gradle | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 488c973..cc5addc 100644 --- a/build.gradle +++ b/build.gradle @@ -64,6 +64,24 @@ minecraft { } } } + + data { + workingDirectory project.file('run') + + // Recommended logging data for a userdev environment + // property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP' + + // Recommended logging level for the console + // property 'forge.logging.console.level', 'debug' + + args '--mod', 'worldhandler', '--all', '--output', file('src/generated/resources/') + + mods { + worldhandler { + source sourceSets.main + } + } + } } } @@ -71,7 +89,7 @@ dependencies { // Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed // that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied. // The userdev artifact is a special name and will get all sorts of transformations applied to it. - minecraft 'net.minecraftforge:forge:1.14.3-27.0.2' + minecraft 'net.minecraftforge:forge:1.14.3-27.0.12' // You may put jars on which you depend on in ./libs or you may define them like so.. // compile "some.group:artifact:version:classifier"