aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/GoodGenerator/Blocks
diff options
context:
space:
mode:
authorGlodBlock <1356392126@qq.com>2021-07-20 14:54:19 +0800
committerGlodBlock <1356392126@qq.com>2021-07-20 14:54:19 +0800
commit865c6457a740e8b7d651a7726980e14c206c6ffc (patch)
treea63cba408314518dd654c3bb6f356a29a7ab23d3 /src/main/java/GoodGenerator/Blocks
parent4bd5c963f44f8933cf6707ba833758aac31b71a7 (diff)
downloadGT5-Unofficial-865c6457a740e8b7d651a7726980e14c206c6ffc.tar.gz
GT5-Unofficial-865c6457a740e8b7d651a7726980e14c206c6ffc.tar.bz2
GT5-Unofficial-865c6457a740e8b7d651a7726980e14c206c6ffc.zip
add recipes
Diffstat (limited to 'src/main/java/GoodGenerator/Blocks')
-rw-r--r--src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java b/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java
index 39b257cb60..9897d6eff5 100644
--- a/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java
+++ b/src/main/java/GoodGenerator/Blocks/TEs/FuelRefineFactory.java
@@ -95,7 +95,7 @@ public class FuelRefineFactory extends GT_MetaTileEntity_MultiblockBase_EM imple
'X',
ofChain(
ofHatchAdder(
- FuelRefineFactory::addToFRFList,60,
+ FuelRefineFactory::addToFRFList,179,
Loaders.FRF_Casings,0
),
ofBlock(
@@ -343,9 +343,9 @@ public class FuelRefineFactory extends GT_MetaTileEntity_MultiblockBase_EM imple
@SuppressWarnings("ALL")
public ITexture[] getTexture(IGregTechTileEntity aBaseMetaTileEntity, byte aSide, byte aFacing, byte aColorIndex, boolean aActive, boolean aRedstone) {
if(aSide == aFacing){
- if(aActive) return new ITexture[]{Textures.BlockIcons.getCasingTextureForId(48), new GT_RenderedTexture(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE_ACTIVE), TextureFactory.builder().addIcon(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE_ACTIVE_GLOW).glow().build()};
- return new ITexture[]{Textures.BlockIcons.getCasingTextureForId(48), new GT_RenderedTexture(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE), TextureFactory.builder().addIcon(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE_GLOW).glow().build()};
+ if(aActive) return new ITexture[]{Textures.BlockIcons.getCasingTextureForId(179), new GT_RenderedTexture(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE_ACTIVE), TextureFactory.builder().addIcon(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE_ACTIVE_GLOW).glow().build()};
+ return new ITexture[]{Textures.BlockIcons.getCasingTextureForId(179), new GT_RenderedTexture(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE), TextureFactory.builder().addIcon(Textures.BlockIcons.OVERLAY_FRONT_ASSEMBLY_LINE_GLOW).glow().build()};
}
- return new ITexture[]{Textures.BlockIcons.getCasingTextureForId(48)};
+ return new ITexture[]{Textures.BlockIcons.getCasingTextureForId(179)};
}
}