diff options
author | bombcar <github@bombcar.com> | 2022-02-15 14:23:18 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 21:23:18 +0100 |
commit | 34f8d8f3fb3e9154452d3c6ae95b2f46757dc195 (patch) | |
tree | 8fb27eb7ddf23af205faabd3147f53681f8989fa /src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java | |
parent | 54ace7e45a23591ec714ac263e83af2b73abfa7a (diff) | |
download | GT5-Unofficial-34f8d8f3fb3e9154452d3c6ae95b2f46757dc195.tar.gz GT5-Unofficial-34f8d8f3fb3e9154452d3c6ae95b2f46757dc195.tar.bz2 GT5-Unofficial-34f8d8f3fb3e9154452d3c6ae95b2f46757dc195.zip |
Fixstructurelib (#17)
* update to handle TT change
* shellcheck
Diffstat (limited to 'src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java')
-rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java b/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java index f7d997e506..69b7173c36 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java @@ -399,11 +399,11 @@ public class NeutronActivator extends GT_MetaTileEntity_MultiblockBase_EM implem @Override public void construct(ItemStack stackSize, boolean hintsOnly) { - structureBuild_EM(NA_BOTTOM, 2, 0, 0, hintsOnly, stackSize); + structureBuild_EM(NA_BOTTOM, 2, 0, 0, stackSize, hintsOnly); int heights = stackSize.stackSize + 3; - structureBuild_EM(NA_TOP, 2, heights + 1, 0, hintsOnly, stackSize); + structureBuild_EM(NA_TOP, 2, heights + 1, 0, stackSize, hintsOnly); while (heights > 0) { - structureBuild_EM(NA_MID, 2, heights, 0, hintsOnly, stackSize); + structureBuild_EM(NA_MID, 2, heights, 0, stackSize, hintsOnly); heights --; } } |