Changed Rice Dough Recipe to need 3 rice to prevent it breaking with HarvestCraft..

This commit is contained in:
Ellpeck 2015-07-18 18:08:06 +02:00
parent d7a55206e0
commit fe97cedc61

View file

@ -22,7 +22,7 @@ public class MiscCrafting{
//Rice Dough
if(ConfigCrafting.RICE_DOUGH.isEnabled())
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitItems.itemMisc, 2, TheMiscItems.RICE_DOUGH.ordinal()),
new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal()), new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal())));
new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal()), new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal()), new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal())));
//Paper Cone
if(ConfigCrafting.PAPER_CONE.isEnabled())