Skip to content

Commit

Permalink
Fixed Barley oredict entry "listAllGrain"->"listAllgrain" (#457)
Browse files Browse the repository at this point in the history
Added "listAllfruit" oredict entries for overworld and nether berries
  • Loading branch information
Targren authored and Alexander (alexbegt) committed Jul 18, 2018
1 parent b87b6c8 commit b27f81e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/main/java/com/progwml6/natura/oredict/NaturaOredict.java
Expand Up @@ -60,7 +60,7 @@ private static void registerCommons()
oredict(NaturaCommons.barleyFlour, "foodFlour");
oredict(NaturaCommons.wheatFlour, "foodFlour");

oredict(NaturaCommons.barley, "listAllGrain");
oredict(NaturaCommons.barley, "listAllgrain");
oredict(NaturaCommons.wheatFlour, "foodEqualswheat");

oredict(NaturaCommons.blueDye, "dyeBlue");
Expand All @@ -86,9 +86,13 @@ private static void registerOverworld()

// Food
oredict(NaturaCommons.raspberry, "cropRaspberry");
oredict(NaturaCommons.raspberry, "listAllfruit");
oredict(NaturaCommons.blueberry, "cropBlueberry");
oredict(NaturaCommons.blueberry, "listAllfruit");
oredict(NaturaCommons.blackberry, "cropBlackberry");
oredict(NaturaCommons.blackberry, "listAllfruit");
oredict(NaturaCommons.maloberry, "cropMaloberry");
oredict(NaturaCommons.maloberry, "listAllfruit");

// Planks
oredict(NaturaOverworld.overworldPlanks, "plankWood");
Expand Down Expand Up @@ -140,9 +144,13 @@ private static void registerNether()
if (isNetherLoaded())
{
oredict(NaturaCommons.blightberry, "cropBlightberry");
oredict(NaturaCommons.blightberry, "listAllfruit");
oredict(NaturaCommons.duskberry, "cropDuskberry");
oredict(NaturaCommons.duskberry, "listAllfruit");
oredict(NaturaCommons.skyberry, "cropSkyberry");
oredict(NaturaCommons.skyberry, "listAllfruit");
oredict(NaturaCommons.stingberry, "cropStingberry");
oredict(NaturaCommons.stingberry, "listAllfruit");

// Tained Soil
oredict(NaturaNether.netherTaintedSoil, "taintedSoil");
Expand Down

0 comments on commit b27f81e

Please sign in to comment.