diff options
author | miozune <miozune@gmail.com> | 2023-05-08 18:28:16 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 11:28:16 +0200 |
commit | d4c24c4d666f21d3132cf355e6e15b425c0f4369 (patch) | |
tree | b557671642b155deb546e75a8b0e8d7d4e154bc7 /src/main/java/gtPlusPlus/xmod/gregtech/registration | |
parent | 410b4d15111cd0d53adfbd302907b80b6a45c3c3 (diff) | |
download | GT5-Unofficial-d4c24c4d666f21d3132cf355e6e15b425c0f4369.tar.gz GT5-Unofficial-d4c24c4d666f21d3132cf355e6e15b425c0f4369.tar.bz2 GT5-Unofficial-d4c24c4d666f21d3132cf355e6e15b425c0f4369.zip |
Remove unused code & migrate to FluidSlotWidget (#619)
* Remove unused code & migrate to FluidSlotWidget
* Update dependencies.gradle
---------
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/registration')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechFluidReactor.java | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechFluidReactor.java b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechFluidReactor.java deleted file mode 100644 index ebc6be40c9..0000000000 --- a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechFluidReactor.java +++ /dev/null @@ -1,18 +0,0 @@ -package gtPlusPlus.xmod.gregtech.registration.gregtech; - -public class GregtechFluidReactor { - - public static void run() { - - /* - * GregtechItemList.FluidReactor_LV .set(new GregtechMetaTileEntity_ChemicalReactor(31021, - * "chemicalplant.01.tier.01", "Chemical Plant I", 1) .getStackForm(1L)); GregtechItemList.FluidReactor_HV - * .set(new GregtechMetaTileEntity_ChemicalReactor(31022, "chemicalplant.01.tier.02", "Chemical Plant II", 3) - * .getStackForm(1L)); GregtechItemList.FluidReactor_IV .set(new GregtechMetaTileEntity_ChemicalReactor(31023, - * "chemicalplant.01.tier.03", "Chemical Plant III", 5) .getStackForm(1L)); GregtechItemList.FluidReactor_ZPM - * .set(new GregtechMetaTileEntity_ChemicalReactor(31024, "chemicalplant.01.tier.04", "Chemical Plant IV", 7) - * .getStackForm(1L)); - */ - - } -} |