Changed Paper and Knife Blade Recipe because people apparently don't know what the word "shapeless" means..

This commit is contained in:
Ellpeck 2015-08-28 15:29:06 +02:00
parent 61fa66d1e6
commit 1f9ce8cc77
2 changed files with 2 additions and 2 deletions

View file

@ -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 ",

View file

@ -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)));
}