Hunger Overhaul

Hunger Overhaul

9M Downloads

Suggestion: Optional vanilla changes if harvestcraft is enabled

the-guernic opened this issue ยท 1 comments

commented

Hello,

it would be really nice if you could add it that the nerf of vanilla food can be toggled if harvestcraft is installed.

As a suggestion:
HungerOverhaul / src / main / java / iguanaman / hungeroverhaul / module / ModuleVanilla.java:
Currently:

        /*
         * Food values
         */
        if (Loader.isModLoaded("harvestcraft") || IguanaConfig.modifyFoodValues)
        {

Something like this, probably ?

        /*
         * Food values
         */
        if (Loader.isModLoaded("harvestcraft") && IguanaConfig.modifyVanillaWithHarvestcraft || IguanaConfig.modifyFoodValues)
        {
commented

TBH, I don't even know why the check for HarvestCraft Is in the vanilla module. That should probably be removed.