aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/blocks
diff options
context:
space:
mode:
authorHarry <harryyunull@gmail.com>2023-07-26 04:08:38 -0400
committerGitHub <noreply@github.com>2023-07-26 10:08:38 +0200
commit32c339a7a2c3f8850c3fc7baa4e2f8344473cdf5 (patch)
tree90c16b2f3280409d2b85c6cef585d6a5464e2013 /src/main/java/goodgenerator/blocks
parentcbd89cb8c4e458d0ea527027eae3311451f58d82 (diff)
downloadGT5-Unofficial-32c339a7a2c3f8850c3fc7baa4e2f8344473cdf5.tar.gz
GT5-Unofficial-32c339a7a2c3f8850c3fc7baa4e2f8344473cdf5.tar.bz2
GT5-Unofficial-32c339a7a2c3f8850c3fc7baa4e2f8344473cdf5.zip
Fix crafting input hatches texture in PrAss (#186)
Diffstat (limited to 'src/main/java/goodgenerator/blocks')
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java b/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java
index 1dc17a29e2..c88e1d43f2 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/PreciseAssembler.java
@@ -364,6 +364,9 @@ public class PreciseAssembler extends GT_MetaTileEntity_ExtendedPowerMultiBlockB
}
public void reUpdate(int texture) {
+ for (IDualInputHatch hatch : mDualInputHatches) {
+ hatch.updateTexture(texture);
+ }
for (GT_MetaTileEntity_Hatch hatch : mInputHatches) {
hatch.updateTexture(texture);
}