mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-12-23 03:49:22 +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
|
||||
if(ConfigCrafting.RICE_GADGETS.isEnabled()){
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.paper, 3),
|
||||
"RRR",
|
||||
"R ", " R ", " R",
|
||||
'R', new ItemStack(InitItems.itemFoods, 1, TheFoods.RICE.ordinal())));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemMisc, 4, TheMiscItems.RICE_SLIME.ordinal()),
|
||||
" R ", "RBR", " R ",
|
||||
|
|
|
@ -39,7 +39,7 @@ public class MiscCrafting{
|
|||
//Knife Blade
|
||||
if(ConfigCrafting.KNIFE_BLADE.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemMisc, 1, TheMiscItems.KNIFE_BLADE.ordinal()),
|
||||
"K", "F",
|
||||
"K", "K", "F",
|
||||
'K', "ingotIron",
|
||||
'F', new ItemStack(Items.flint)));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue