Update filler block to prevent useless console warning.

This commit is contained in:
LexManos 2013-07-02 02:04:28 -07:00
parent 3e9349bf7b
commit b0520f3656
1 changed files with 3 additions and 1 deletions

View File

@ -187,7 +187,9 @@ public class MinecraftForge
Block filler = new Block(0, Material.air)
{
@SideOnly(Side.CLIENT) public void func_94332_a(IconRegister register){}
@SideOnly(Side.CLIENT)
@Override
public void registerIcons(IconRegister register){}
};
Block.blocksList[0] = null;
Block.opaqueCubeLookup[0] = false;