diff options
author | miozune <miozune@gmail.com> | 2022-09-10 12:44:34 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-10 04:44:34 +0100 |
commit | 150d0185d7183b5840c58db8478728816f9b54b9 (patch) | |
tree | 0d96dec067c6893110d9e644a95b469377e4cafe | |
parent | 6e6072a4d72314e9ce7a30ca0d0f07cf1bf97f5f (diff) | |
download | GT5-Unofficial-150d0185d7183b5840c58db8478728816f9b54b9.tar.gz GT5-Unofficial-150d0185d7183b5840c58db8478728816f9b54b9.tar.bz2 GT5-Unofficial-150d0185d7183b5840c58db8478728816f9b54b9.zip |
Fix incorrect casing id for Flotation Cell (#342)
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java index 61468ce100..2cea38e130 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java @@ -139,7 +139,7 @@ public class GregtechMTE_FrothFlotationCell extends GregtechMeta_MultiBlockBase< 'C', buildHatchAdder(GregtechMTE_FrothFlotationCell.class) .atLeast(InputBus, InputHatch, OutputHatch, Maintenance, Energy, Muffler) - .casingIndex(TAE.GTPP_INDEX(1)) + .casingIndex(getCasingTextureId()) .dot(1) .buildAndChain( onElementPass(x -> ++x.mCasing, ofBlock(ModBlocks.blockCasings3Misc, 1)))) |