If you found a bug or even are experiencing a crash please report it so we can fix it. Please check at first if a bug report for the issue already exists. If not just create a new issue and fill out the form.
Please include the following:
(When creating a new issue please follow the template)
If you want a new feature added, go ahead an open a new issue, remove the existing form and describe your feature the best you can. The more details you provide the easier it will be to implement it. You can also talk to me on Discord
If you want to use items or blocks from my mod, add support for, or even develop an addon for my mod, you can easily add it to your development environment! Most
releases get uploaded to my maven repository.
So all you have to do to include the mod is add these lines (in the appropriate places) to your build.gradle
repositories {
maven { // The_Fireplace's Mods, and BrainStoneMod
url "http://maven.brainstonemod.com"
}
// Other repos...
}
dependencies {
deobfCompile "the_fireplace.mechsoldiers:MechSoldiers-<MC-Version>:<version>"
// Other dependencies
}
gradlew[.bat] setupDecompWorkspace [eclipse|idea]
gradlew[.bat] build
gradlew clean
and gradlew cleanCache
(This one is a last resort)