mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-12-23 11:49:23 +01:00
Changed Paper and Knife Blade Recipe because people apparently don't know what the word "shapeless" means..
This commit is contained in:
parent
61fa66d1e6
commit
1f9ce8cc77
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ public class ItemCrafting{
|
||||||
//Rice Stuff
|
//Rice Stuff
|
||||||
if(ConfigCrafting.RICE_GADGETS.isEnabled()){
|
if(ConfigCrafting.RICE_GADGETS.isEnabled()){
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.paper, 3),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.paper, 3),
|
||||||
"RRR",
|
"R ", " R ", " R",
|
||||||
'R', new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal())));
|
'R', new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal())));
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemMisc, 4, TheMiscItems.RICE_SLIME.ordinal()),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemMisc, 4, TheMiscItems.RICE_SLIME.ordinal()),
|
||||||
" R ", "RBR", " R ",
|
" R ", "RBR", " R ",
|
||||||
|
|
|
@ -39,7 +39,7 @@ public class MiscCrafting{
|
||||||
//Knife Blade
|
//Knife Blade
|
||||||
if(ConfigCrafting.KNIFE_BLADE.isEnabled())
|
if(ConfigCrafting.KNIFE_BLADE.isEnabled())
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemMisc, 1, TheMiscItems.KNIFE_BLADE.ordinal()),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemMisc, 1, TheMiscItems.KNIFE_BLADE.ordinal()),
|
||||||
"K", "F",
|
"K", "K", "F",
|
||||||
'K', "ingotIron",
|
'K', "ingotIron",
|
||||||
'F', new ItemStack(Items.flint)));
|
'F', new ItemStack(Items.flint)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue