Fixed #77 - Duplicate tile ID

This commit is contained in:
Calclavia 2013-12-23 17:48:11 +08:00
parent 85ba049e75
commit bbf1ade144

View file

@ -187,7 +187,7 @@ public class ResonantInduction
{ {
blockAdvancedFurnace = BlockAdvancedFurnace.createNew(false); blockAdvancedFurnace = BlockAdvancedFurnace.createNew(false);
GameRegistry.registerBlock(blockAdvancedFurnace, "ri_" + blockAdvancedFurnace.getUnlocalizedName()); GameRegistry.registerBlock(blockAdvancedFurnace, "ri_" + blockAdvancedFurnace.getUnlocalizedName());
GameRegistry.registerTileEntity(TileEntityAdvancedFurnace.class, blockAdvancedFurnace.getUnlocalizedName()); GameRegistry.registerTileEntity(TileEntityAdvancedFurnace.class, "ri_" + blockAdvancedFurnace.getUnlocalizedName());
} }
CONFIGURATION.save(); CONFIGURATION.save();