Code cleanup

This commit is contained in:
LemADEC 2017-02-21 22:00:13 +01:00
parent 1a56064b80
commit 77601cdd8e

View file

@ -1513,12 +1513,12 @@ public class Recipes {
'd', Items.diamond));
// Chillers
Object water = Blocks.snow;
Object snowOrIce = Blocks.snow;
if (OreDictionary.doesOreNameExist("dustCryotheum") && !OreDictionary.getOres("dustCryotheum").isEmpty()) {
water = Blocks.ice;
snowOrIce = Blocks.ice;
}
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(WarpDrive.blockChillers[0]), "wgw", "sms", "bMb",
'w', water,
'w', snowOrIce,
'g', Items.ghast_tear,
's', ingotIronOrSteel,
'm', itemStackMotorLV,