diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2022-08-20 20:29:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-20 14:29:56 +0200 |
commit | e0c9e50e900d857dc9f38680ca84a6384875899a (patch) | |
tree | 21dfcce6b67f45ba170f38dc298b2ee336743f03 /src/main/java/gtPlusPlus/xmod/gregtech/common | |
parent | c9323dfa115a068fb28fa30fcb22f8d73b9a5773 (diff) | |
download | GT5-Unofficial-e0c9e50e900d857dc9f38680ca84a6384875899a.tar.gz GT5-Unofficial-e0c9e50e900d857dc9f38680ca84a6384875899a.tar.bz2 GT5-Unofficial-e0c9e50e900d857dc9f38680ca84a6384875899a.zip |
continue placing solar heaters on place sucess (#285)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java index 719c0ce3db..7d7789b0b6 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMetaTileEntity_SolarTower.java @@ -294,6 +294,7 @@ public class GregtechMetaTileEntity_SolarTower extends GregtechMeta_MultiBlockBa // use a positive casing index to make adder builder happy .casingIndex(1) .dot(1) + .continueIfSuccess() .build())) .addElement('t', lazy(t -> onElementPass(x -> ++x.mCasing1, ofBlock(t.getCasingBlock(), t.getCasingMeta())))) .addElement('i', lazy(t -> onElementPass(x -> ++x.mCasing2, ofBlock(t.getCasingBlock(), t.getCasingMeta2())))) |