Skip to content

Commit

Permalink
Fix recipe issues using the wrong planks for fusewood/darkwood button…
Browse files Browse the repository at this point in the history
…s, doors and fix the carrot seed bag to carrots recipe.
  • Loading branch information
alexbegt committed Jul 21, 2017
1 parent b5ae7ca commit 5202bf8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -19,8 +19,8 @@ public enum WoodTypes implements IStringSerializable
REDWOOD(WorldType.OVERWORLD, 8, 8),
GHOSTWOOD(WorldType.NETHER, 0, 9),
BLOODWOOD(WorldType.NETHER, 1, 12),
FUSEWOOD(WorldType.NETHER, 2, 11),
DARKWOOD(WorldType.NETHER, 3, 10);
FUSEWOOD(WorldType.NETHER, 3, 11),
DARKWOOD(WorldType.NETHER, 2, 10);

@Nonnull
private final WorldType worldType;
Expand Down
Expand Up @@ -264,7 +264,7 @@ private void registerRecipes()

GameRegistry.addRecipe(new ItemStack(Items.WHEAT_SEEDS, 9, 0), "s", 's', wheat_seed_bag.copy());
GameRegistry.addRecipe(new ItemStack(Items.POTATO, 9, 0), "s", 's', potatoes_seed_bag.copy());
GameRegistry.addRecipe(new ItemStack(Items.CARROT, 9, 0), "s", 's', potatoes_seed_bag.copy());
GameRegistry.addRecipe(new ItemStack(Items.CARROT, 9, 0), "s", 's', carrots_seed_bag.copy());
GameRegistry.addRecipe(new ItemStack(Items.NETHER_WART, 9, 0), "s", 's', nether_wart_seed_bag.copy());
GameRegistry.addRecipe(new ItemStack(Items.DYE, 9, 15), "s", 's', boneMealBag);

Expand Down

0 comments on commit 5202bf8

Please sign in to comment.