Skip to content

BecoolTJ/Changed-Minecraft-Mod

 
 

Repository files navigation

Changed: Minecraft Mod

This repository holds the source code for the Changed: Minecraft Mod. Releases are compiled and published to our CurseForge page.

How can I help?

Any aspiring developer is welcome to fork and create a pull request to submit their content. Programmers, texture artists, and 3D modelers all have a place here.

  • Textures are kept in src/main/resources/assets/changed/textures
  • Java code is in src/main/java/net/ltxprogrammer/changed
  • 3D models are kept here src/main/java/net/ltxprogrammer/changed/client/renderer/model

Changes you make to the code should be on your own fork. Create a pull request when ready to submit.

I want to make my own sub mod

Alright, grab the forge MDK, and install intellij. Add the .jar version of this mod to the './libs' directory in the new mod, remove the file changed.refmap.json (in the .jar) as the dev environment will fail to load with it, then add this line in your dependancies (build.gradle):

implementation fg.deobf('net.ltxprogrammer.changed:Changed-m1.18.2:v0.8.3')
// Replace v0.8.3 with the version you plan to mod

Then add a mod dependancy to mods.toml:

[[dependencies.your_mod_id]]
    modId="changed"
    mandatory=true
    versionRange="[0.8.3]" # Again, replace 0.8.3 with the version you plan to mod
    ordering="NONE"
    side="BOTH"

You'll now have access to all the tools within the Changed: Minecraft Mod.

About

A Changed experience in the world of Minecraft.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%