Posted August 13, 20205 yr I want to extend functionality of a mod which is open source on github. I'm trying to do this by including that project as a git submodule in my project, then getting gradle to build it. So far, I've managed to get gradle to build it, but I can't get minecraft client to load the said mod. I assume there needs to be a way to copy the compiled dependency from libs folder of that to libs folder of my mod or something like that, but I am unsure. My configurations are as follows: build.gradle(everything outside dependencies is unchanged from what is provided with the mdk) dependencies { minecraft 'net.minecraftforge:forge:1.16.1-32.0.108' compile project('DependencyMod') } settings.gradle include 'DependencyMod'
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.