Fix Lamp textures

This commit is contained in:
Ellpeck 2015-12-03 22:53:05 +01:00
parent 2a4b3a8a4f
commit 97c948828a
17 changed files with 1 additions and 1 deletions

View file

@ -126,7 +126,7 @@ public class BlockColoredLamp extends BlockBase{
public void registerBlockIcons(IIconRegister iconReg){
this.textures = new IIcon[allLampTypes.length];
for(int i = 0; i < allLampTypes.length; i++){
this.textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName()+allLampTypes[i].name+(isOn ? "On" : ""));
this.textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName()+allLampTypes[i].name);
}
}