diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-05-09 21:51:49 +0200 |
---|---|---|
committer | Johannes Gäßler <updrn@student.kit.edu> | 2017-05-09 21:51:49 +0200 |
commit | 0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6 (patch) | |
tree | 58c266c6182b5f1b0ddb19d14b596278e3f6ba4f /src/main/java/gregtech/common/tileentities | |
parent | ad40b85de13f4e576d78d32fb4fcb6514a80e4ab (diff) | |
download | GT5-Unofficial-0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6.tar.gz GT5-Unofficial-0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6.tar.bz2 GT5-Unofficial-0c2dee56daeb7b94208a581f1dc9f21edbb5e2f6.zip |
Added new textures for the LCM, using them now
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java index 63d0dd66a7..c7a11829a8 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java @@ -20,7 +20,7 @@ import net.minecraftforge.fluids.FluidStack; public class GT_MetaTileEntity_LargeChemicalReactor extends GT_MetaTileEntity_MultiBlockBase {
- private static final int CASING_INDEX = 16;
+ private static final int CASING_INDEX = 62;
public GT_MetaTileEntity_LargeChemicalReactor(int aID, String aName, String aNameRegional) {
super(aID, aName, aNameRegional);
@@ -50,7 +50,7 @@ public class GT_MetaTileEntity_LargeChemicalReactor extends GT_MetaTileEntity_Mu "1x Output Bus/Hatch (Any edge casing)",
"1x Maintenance Hatch (Any edge casing)",
"1x Energy Hatch (Any edge casing)",
- "Chemically Inert Casings for the rest (10 at least!)" };
+ "Chemically Inert Casings for the rest (8 at least!)" };
}
@Override
@@ -59,8 +59,8 @@ public class GT_MetaTileEntity_LargeChemicalReactor extends GT_MetaTileEntity_Mu if (aSide == aFacing) {
return new ITexture[] {
Textures.BlockIcons.CASING_BLOCKS[CASING_INDEX],
- new GT_RenderedTexture(aActive ? Textures.BlockIcons.OVERLAY_FRONT_IMPLOSION_COMPRESSOR_ACTIVE
- : Textures.BlockIcons.OVERLAY_FRONT_IMPLOSION_COMPRESSOR) };
+ new GT_RenderedTexture(aActive ? Textures.BlockIcons.OVERLAY_FRONT_LARGE_CHEMICAL_REACTOR
+ : Textures.BlockIcons.OVERLAY_FRONT_LARGE_CHEMICAL_REACTOR_ACTIVE) };
}
return new ITexture[] { Textures.BlockIcons.CASING_BLOCKS[CASING_INDEX] };
}
|