Fixes #147 - Eezo ingot now converts to 9 nuggets (#148)

Conversion previously listed as Eezo Block = 9 Ingots, 1 Ingot = 9 *Ingots*.

Now listed as  Eezo Block = 9 Ingots, 1 Ingot = 9 *nuggets*
This commit is contained in:
Jason Spradlin
2017-07-08 15:22:19 -05:00
committed by Giovanni Harting
parent 5dca654237
commit b063257977

View File

@@ -22,7 +22,7 @@ public class CraftingRegistry {
convertion(Item.getItemFromBlock(Blocks.palladiumBlock), Items.palladiumIngot, Items.palladiumNugget);
convertion(Item.getItemFromBlock(Blocks.uruBlock), Items.uruIngot, Items.uruNugget);
convertion(Item.getItemFromBlock(Blocks.osramBlock), Items.osramIngot, Items.osramNugget);
convertion(Item.getItemFromBlock(Blocks.eezoBlock), Items.eezoIngot, Items.eezoIngot);
convertion(Item.getItemFromBlock(Blocks.eezoBlock), Items.eezoIngot, Items.eezoNugget);
convertion(Item.getItemFromBlock(Blocks.abyssumBlock), Items.abyssumIngot, Items.abyssumNugget);
convertion(Item.getItemFromBlock(Blocks.terraxBlock), Items.terraxIngot, Items.terraxNugget);
convertion(Item.getItemFromBlock(Blocks.triberiumBlock), Items.triberiumIngot, Items.triberiumNugget);