From 4dd28973822c747c3046d45d28f4f927128825b0 Mon Sep 17 00:00:00 2001 From: Derrick Lemmon Date: Mon, 22 Jul 2019 21:06:07 -0400 Subject: [PATCH] Update to my updated change Forgot to add "useDependencyInformation" for the "dependencies" to actually be used. This along with the last patch to the ChickenMod.java file should fix the ability to use other mod items. It'll have the other mods load before this one so that the items exist to be used. The reason behind this is here https://github.com/setycz/ChickensMod/issues/153 --- src/main/resources/mcmod.info | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 83d2ae7..dace882 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -11,6 +11,7 @@ "credits": "The Forge and FML guys, for making this example", "logoFile": "assets/chickens/logo.png", "screenshots": [], - "dependencies": [] + "useDependencyInformation": true, + "dependencies": ["mysticalagriculture","thermalfoundation"] } ]