aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorYang Xizhi <60341015+GlodBlock@users.noreply.github.com>2022-07-06 19:47:17 +0800
committerGitHub <noreply@github.com>2022-07-06 18:47:17 +0700
commit16f14d3f567375a650526c53992bce5fff096074 (patch)
tree94dc3744e9cbcf01dd35537d08075d007fbf3686 /src/main
parent16ad9da1c205117afcdd4f005da25e2c5772780c (diff)
downloadGT5-Unofficial-16f14d3f567375a650526c53992bce5fff096074.tar.gz
GT5-Unofficial-16f14d3f567375a650526c53992bce5fff096074.tar.bz2
GT5-Unofficial-16f14d3f567375a650526c53992bce5fff096074.zip
fix casing te not get update after breaking (#152)
fix https://github.com/GTNewHorizons/GT-New-Horizons-Modpack/issues/10597 Former-commit-id: 76f3cf16117ca62f96cd019407e886ec9891ee87
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java
index 9736e27566..abc49d8a53 100644
--- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java
+++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/BW_MetaGeneratedBlocks_Casing.java
@@ -74,6 +74,7 @@ public class BW_MetaGeneratedBlocks_Casing extends BW_MetaGenerated_Blocks imple
@Override
public void breakBlock(World aWorld, int aX, int aY, int aZ, Block aBlock, int aMetaData) {
GregTech_API.causeMachineUpdate(aWorld, aX, aY, aZ);
+ super.breakBlock(aWorld, aX, aY, aZ, aBlock, aMetaData);
}
@Override