Made Player Interface recipe more expensive

This commit is contained in:
Ellpeck 2016-06-05 12:21:47 +02:00
parent 707f71d7e3
commit 2c24463e0e

View file

@ -403,7 +403,7 @@ public class BlockCrafting{
//Player Interface //Player Interface
if(ConfigCrafting.PLAYER_INTERFACE.isEnabled()){ if(ConfigCrafting.PLAYER_INTERFACE.isEnabled()){
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPlayerInterface), GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPlayerInterface),
" C ", "EBE", " S ", "BCB", "EBE", "BSB",
'E', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()), 'E', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.DIAMOND.ordinal()),
'C', new ItemStack(Items.SKULL, 1, 1), 'C', new ItemStack(Items.SKULL, 1, 1),
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()), 'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),