mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Changed Rice Dough Recipe to need 3 rice to prevent it breaking with HarvestCraft..
This commit is contained in:
parent
d7a55206e0
commit
fe97cedc61
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ public class MiscCrafting{
|
||||||
//Rice Dough
|
//Rice Dough
|
||||||
if(ConfigCrafting.RICE_DOUGH.isEnabled())
|
if(ConfigCrafting.RICE_DOUGH.isEnabled())
|
||||||
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitItems.itemMisc, 2, TheMiscItems.RICE_DOUGH.ordinal()),
|
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
|
//Paper Cone
|
||||||
if(ConfigCrafting.PAPER_CONE.isEnabled())
|
if(ConfigCrafting.PAPER_CONE.isEnabled())
|
||||||
|
|
Loading…
Reference in a new issue