Fixed Lathe returning on texture all the time

This commit is contained in:
Gig 2015-05-20 23:35:04 +01:00
parent f32c81c780
commit 4ffa445b9b
4 changed files with 19 additions and 38 deletions

View file

@ -126,8 +126,7 @@ public class ModBlocks {
public static Block storage;
public static Block machineframe;
public static void init()
{
public static void init(){
thermalGenerator = new BlockThermalGenerator();
GameRegistry.registerBlock(thermalGenerator, "techreborn.thermalGenerator");
GameRegistry.registerTileEntity(TileThermalGenerator.class, "TileThermalGeneratorTR");
@ -284,8 +283,7 @@ public class ModBlocks {
registerOreDict();
}
public static void registerOreDict()
{
public static void registerOreDict(){
OreDictionary.registerOre("oreGalena", new ItemStack(ore, 1, 0));
OreDictionary.registerOre("oreIridium", new ItemStack(ore, 1, 1));
OreDictionary.registerOre("oreRuby", new ItemStack(ore, 1, 2));