Suggestion: Optional vanilla changes if harvestcraft is enabled
the-guernic opened this issue ยท 1 comments
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)
{