Fixed #77 - Duplicate tile ID
This commit is contained in:
parent
85ba049e75
commit
bbf1ade144
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ public class ResonantInduction
|
|||
{
|
||||
blockAdvancedFurnace = BlockAdvancedFurnace.createNew(false);
|
||||
GameRegistry.registerBlock(blockAdvancedFurnace, "ri_" + blockAdvancedFurnace.getUnlocalizedName());
|
||||
GameRegistry.registerTileEntity(TileEntityAdvancedFurnace.class, blockAdvancedFurnace.getUnlocalizedName());
|
||||
GameRegistry.registerTileEntity(TileEntityAdvancedFurnace.class, "ri_" + blockAdvancedFurnace.getUnlocalizedName());
|
||||
}
|
||||
|
||||
CONFIGURATION.save();
|
||||
|
|
Loading…
Reference in a new issue