diff options
author | Alkalus <Draknyte1@hotmail.com> | 2020-04-22 12:55:47 +0100 |
---|---|---|
committer | Alkalus <Draknyte1@hotmail.com> | 2020-04-22 12:55:47 +0100 |
commit | 3159aef00e7babcf8c5e1d574a738b6d2cac9e42 (patch) | |
tree | 3d31b904c49c92098001665eb0a83d7446ae92b6 /src/Java/gtPlusPlus/core | |
parent | 9a27bf259760e0ecaaef47d121bff37634494839 (diff) | |
download | GT5-Unofficial-3159aef00e7babcf8c5e1d574a738b6d2cac9e42.tar.gz GT5-Unofficial-3159aef00e7babcf8c5e1d574a738b6d2cac9e42.tar.bz2 GT5-Unofficial-3159aef00e7babcf8c5e1d574a738b6d2cac9e42.zip |
$ Fixed milled byproducts not using the correct texture.
$ Fixed handling of IC2 EnumHelper code.
$ Added a dummy RecipeMap to stop Bartworks crashing when it can't find it.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/base/ore/BaseOreComponent.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/item/base/ore/BaseOreComponent.java b/src/Java/gtPlusPlus/core/item/base/ore/BaseOreComponent.java index 356fdac24e..883eb241da 100644 --- a/src/Java/gtPlusPlus/core/item/base/ore/BaseOreComponent.java +++ b/src/Java/gtPlusPlus/core/item/base/ore/BaseOreComponent.java @@ -178,9 +178,9 @@ public class BaseOreComponent extends Item{ @SideOnly(Side.CLIENT) public void registerIcons(final IIconRegister par1IconRegister){ if (this.componentType == ComponentTypes.MILLED) { - this.base = par1IconRegister.registerIcon(CORE.MODID + ":" + "processing/MilledOre/"+this.componentType.getComponent()); + this.base = par1IconRegister.registerIcon(CORE.MODID + ":" + "processing/MilledOre/milled"); if (this.componentType.hasOverlay()){ - this.overlay = par1IconRegister.registerIcon(CORE.MODID + ":" + "processing/MilledOre/"+this.componentType.getComponent()+"_Overlay"); + this.overlay = par1IconRegister.registerIcon(CORE.MODID + ":" + "processing/MilledOre/milled_OVERLAY"); } } else if (CORE.ConfigSwitches.useGregtechTextures){ |