diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-05-12 22:50:29 +0200 |
---|---|---|
committer | Johannes Gäßler <updrn@student.kit.edu> | 2017-05-12 22:50:29 +0200 |
commit | 3cf169b5c3f1b346b249704f6a3992ce3a591dea (patch) | |
tree | 8105f257c2f5ee06ccdbea6939328bf868753158 /src/main/java/gregtech/common/tileentities | |
parent | 20142f1b10f06c32be1a5835691c1a89c3888a33 (diff) | |
download | GT5-Unofficial-3cf169b5c3f1b346b249704f6a3992ce3a591dea.tar.gz GT5-Unofficial-3cf169b5c3f1b346b249704f6a3992ce3a591dea.tar.bz2 GT5-Unofficial-3cf169b5c3f1b346b249704f6a3992ce3a591dea.zip |
Added crafting recipes for the LCH
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeChemicalReactor.java | 4 |
1 files changed, 2 insertions, 2 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 c7a11829a8..a110300c0f 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 @@ -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_LARGE_CHEMICAL_REACTOR
- : Textures.BlockIcons.OVERLAY_FRONT_LARGE_CHEMICAL_REACTOR_ACTIVE) };
+ new GT_RenderedTexture(aActive ? Textures.BlockIcons.OVERLAY_FRONT_LARGE_CHEMICAL_REACTOR_ACTIVE
+ : Textures.BlockIcons.OVERLAY_FRONT_LARGE_CHEMICAL_REACTOR) };
}
return new ITexture[] { Textures.BlockIcons.CASING_BLOCKS[CASING_INDEX] };
}
|