diff options
author | RealSilverMoon <31100241+RealSilverMoon@users.noreply.github.com> | 2024-03-15 14:43:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 07:43:13 +0100 |
commit | cb3b0e30f4e4691399d202e00852b8cc19b88f4a (patch) | |
tree | 946399f6cc14c5e65f8d695f8db80947c1e23789 /src/main/java/gregtech/api/metatileentity | |
parent | 286849aa34b76c1efed4fcfd6d02790d134a3e82 (diff) | |
download | GT5-Unofficial-cb3b0e30f4e4691399d202e00852b8cc19b88f4a.tar.gz GT5-Unofficial-cb3b0e30f4e4691399d202e00852b8cc19b88f4a.tar.bz2 GT5-Unofficial-cb3b0e30f4e4691399d202e00852b8cc19b88f4a.zip |
Show the reason why the machine shutdown on DC (#2536)
* Allow highlight far machine
* Allow highlight far machine
* Show the reason why the machine shutdown
* Update button dynamically
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity')
-rw-r--r-- | src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_MultiBlockBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_MultiBlockBase.java b/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_MultiBlockBase.java index 7ad92d8e03..5d552bccc0 100644 --- a/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_MultiBlockBase.java +++ b/src/main/java/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_MultiBlockBase.java @@ -2193,7 +2193,7 @@ public abstract class GT_MetaTileEntity_MultiBlockBase extends MetaTileEntity return true; } - protected boolean shouldDisplayShutDownReason() { + public boolean shouldDisplayShutDownReason() { return true; } |