yuanjie000 / Overlord

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Overlord

Curse Forge

Issue Reporting

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:

  • Minecraft version
  • Mod version
  • Forge version/build
  • Versions of any mods potentially related to the issue
  • Any relevant screenshots/videos are greatly appreciated.
  • For crashes:
    • Steps to reproduce
    • fml-client-latest.log or fml-server-latest.log from the logs folder.

(When creating a new issue please follow the template)

Feature Requests

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

Developing with My Mod

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.overlord:Overlord-<MC-Version>:<version>"
    // Other dependencies
}

Setting up a Workspace/Compiling from Source

  • Setup: Run [gradle] in the repository root: gradlew[.bat] setupDecompWorkspace [eclipse|idea]
  • Build: Run [gradle] in the repository root: gradlew[.bat] build
  • If obscure Gradle issues are found try running gradlew clean and gradlew cleanCache(This one is a last resort)

About

License:GNU Lesser General Public License v3.0


Languages

Language:Java 100.0%