fix because I'm stupid

This commit is contained in:
Anton 2015-09-06 17:33:23 +03:00
parent 92bf6bfc9a
commit ef74acc474

View file

@ -676,11 +676,11 @@ public class BuildCraftTransport extends BuildCraftMod {
String dye = ColorUtils.getOreDictionaryName(15 - i);
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(lensItem, 8, i),
"OSO", "SGS", "OSO",
'O', "ingotIron", 'S', "dye", 'G', "blockGlass"
'O', "ingotIron", 'S', dye, 'G', "blockGlass"
));
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(lensItem, 8, i + 16),
"OSO", "SGS", "OSO",
'O', Blocks.iron_bars, 'S', "dye", 'G', "blockGlass"
'O', Blocks.iron_bars, 'S', dye, 'G', "blockGlass"
));
}
}