Skip to content
This repository was archived by the owner on Oct 31, 2023. It is now read-only.

Sleet827/Not-Enough-Food

Repository files navigation

Not-Enough-Food

This mod adds more food to minecraft, ranging from small things like chicken nuggets, to big ones like burgers and pizzas.

Making an addon:

If you want to make an addon to more food, like add some custom food to the cooked meat tag, you definitely can!

First, add these to lines of code to gradle.properties:

gpr.username=your_github_username
gpr.token=your_github_token

You can generate your token here.

Then, in your build.gradle file, create a new variable like so:

def gpr_creds = {
    username = property('gpr.username')
    password = property('gpr.token')
}

Then in your repositories block, add this:

maven {
    url = uri("https://maven.pkg.github.com/hackcoder1000/not-enough-food")
    credentials gpr_creds
}

Finally, in your dependencies block, add this line of code:

compileOnly fg.deobf("net.legiblesleet827:not-enough-food:VERSION") {
    exclude module: 'forge'
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages