diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-02-11 21:33:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 21:33:23 +0000 |
commit | 92780c970591fd7656859e868adc3583ec70011c (patch) | |
tree | 6e2cbf189423a9c683ee1d56d22b4dd17fd93b01 /src/main | |
parent | 15c164f8471acc37c530afa0e44852251900e5e4 (diff) | |
download | GT5-Unofficial-92780c970591fd7656859e868adc3583ec70011c.tar.gz GT5-Unofficial-92780c970591fd7656859e868adc3583ec70011c.tar.bz2 GT5-Unofficial-92780c970591fd7656859e868adc3583ec70011c.zip |
Changed Minimum Water Check (#123)
- Changed the minimum amount of water blocks needed to run the multi, since it only renders one layer of water now instead of two.
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java index d3db328bd4..0631b64a81 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/algae/GregtechMTE_AlgaePondBase.java @@ -269,7 +269,7 @@ public class GregtechMTE_AlgaePondBase extends GregtechMeta_MultiBlockBase<Gregt } } - boolean isValidWater = tAmount >= 60; + boolean isValidWater = tAmount >= 49; if (isValidWater) { Logger.INFO("Filled structure."); |