diff options
author | Martin Robertz <dream-master@gmx.net> | 2022-03-12 10:44:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 10:44:47 +0100 |
commit | 600c9919ac3f6a51bc48309899f825057c898be0 (patch) | |
tree | 098c569ef206d63099eab4a62fcfee305dbc5757 /src/main/java/gregtech/common/tileentities/machines/basic | |
parent | 012c11d65cc633c9f37c8f8804c89ffce8d04bdf (diff) | |
download | GT5-Unofficial-600c9919ac3f6a51bc48309899f825057c898be0.tar.gz GT5-Unofficial-600c9919ac3f6a51bc48309899f825057c898be0.tar.bz2 GT5-Unofficial-600c9919ac3f6a51bc48309899f825057c898be0.zip |
change Biomass brewing recipe to 1000 mb (#976)
* change Biomass brewing recipe to 1000 mb
make distilled water recipe much quicker
(cherry picked from commit 64d599e1bd37174df4ae5555f0492e058d40fb61)
* fix biomass recipe
(cherry picked from commit af0cbc4b4f207fd21428f656572d0fa5a1d013e2)
* set input and aoutput stack to 1000L
* change back to 1000L
(cherry picked from commit 63d5b7b3bbf3d3e80485454a3c87eef65dbb28e6)
* remove duplication entry
change recipe stack(water)
(cherry picked from commit cf86138953199b8dbc9a87451ce0be9c44bf1056)
* Revert "set input and aoutput stack to 1000L"
This reverts commit 500a250ade0d4eab963b96646a01c497cb252abb.
(cherry picked from commit c5142567a319f8379bf716d098e97b7d809783c7)
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines/basic')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_PotionBrewer.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_PotionBrewer.java b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_PotionBrewer.java index 79b363fac3..1fed0ef2a1 100644 --- a/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_PotionBrewer.java +++ b/src/main/java/gregtech/common/tileentities/machines/basic/GT_MetaTileEntity_PotionBrewer.java @@ -47,10 +47,6 @@ public class GT_MetaTileEntity_PotionBrewer extends GT_MetaTileEntity_BasicMachi ); } - public GT_MetaTileEntity_PotionBrewer(String aName, int aTier, String aDescription, ITexture[][][] aTextures, String aGUIName, String aNEIName) { - super(aName, aTier, 1, aDescription, aTextures, 1, 0, aGUIName, aNEIName); - } - public GT_MetaTileEntity_PotionBrewer(String aName, int aTier, String[] aDescription, ITexture[][][] aTextures, String aGUIName, String aNEIName) { super(aName, aTier, 1, aDescription, aTextures, 1, 0, aGUIName, aNEIName); } |