diff options
author | GDCloud <93287602+GDCloudstrike@users.noreply.github.com> | 2023-02-12 02:51:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-12 01:51:04 +0000 |
commit | 3d8b59234fdb2f13dcb22e4213e410b61d00b329 (patch) | |
tree | ce02d9c8eb4f426d3c6e8bcb3584803dc620ccbe /src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations | |
parent | bd9c214a6cd8c84df64cb8138f8cbdf821f694bf (diff) | |
download | GT5-Unofficial-3d8b59234fdb2f13dcb22e4213e410b61d00b329.tar.gz GT5-Unofficial-3d8b59234fdb2f13dcb22e4213e410b61d00b329.tar.bz2 GT5-Unofficial-3d8b59234fdb2f13dcb22e4213e410b61d00b329.zip |
Fix QFT voiding (#539)
* fix output
* Typo
* Fix warnings by intellij
* Spotless
* spotlessApply (#540)
Co-authored-by: GitHub GTNH Actions <>
---------
Co-authored-by: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java index 5ac2b9c53b..dd7f19b39c 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java @@ -564,7 +564,7 @@ public abstract class GregtechMeta_MultiBlockBase<T extends GT_MetaTileEntity_Ex break; } } - // Try prevent needless iteration loops if we don't have the required inputs at all. + // Try to prevent needless iteration loops if we don't have the required inputs at all. if (aDidFindMatch) { // Iterate all special behaviour items, to see if we need to utilise one. for (SpecialMultiBehaviour aBehaviours : mCustomBehviours.values()) { |