aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-02-16 17:43:54 +0900
committerGitHub <noreply@github.com>2023-02-16 09:43:54 +0100
commit6d1ce9ee20fc0bdb7dda2d7066a8c3474e4d1050 (patch)
tree549c66a1105bd76e157a9adceea3614b52787a4a /src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java
parentf387766d71209d3e9eb8837ae3592f2b8f5838e1 (diff)
downloadGT5-Unofficial-6d1ce9ee20fc0bdb7dda2d7066a8c3474e4d1050.tar.gz
GT5-Unofficial-6d1ce9ee20fc0bdb7dda2d7066a8c3474e4d1050.tar.bz2
GT5-Unofficial-6d1ce9ee20fc0bdb7dda2d7066a8c3474e4d1050.zip
Remove reflections against BW (#544)
Diffstat (limited to 'src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java')
-rw-r--r--src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java b/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java
index 6b35efd47b..678bc1b6ef 100644
--- a/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java
+++ b/src/main/java/Ic2ExpReactorPlanner/ComponentFactory.java
@@ -17,13 +17,14 @@ import Ic2ExpReactorPlanner.components.Plating;
import Ic2ExpReactorPlanner.components.ReactorItem;
import Ic2ExpReactorPlanner.components.Reflector;
import Ic2ExpReactorPlanner.components.Vent;
+
+import com.github.bartimaeusnek.bartworks.system.material.BW_NonMeta_MaterialItems;
+
import gregtech.api.enums.ItemList;
import gregtech.api.objects.GT_ItemStack;
import gregtech.api.util.GT_ModHandler;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.core.lib.LoadedMods;
-import gtPlusPlus.xmod.bartworks.BW_Utils;
-import gtPlusPlus.xmod.bartworks.BW_Utils.NonMeta_MaterialItem;
import gtPlusPlus.xmod.goodgenerator.GG_Utils;
import gtPlusPlus.xmod.goodgenerator.GG_Utils.GG_Fuel_Rod;
@@ -563,8 +564,7 @@ public class ComponentFactory {
new FuelRod(
51,
"fuelRodTiberium",
- new GT_ItemStack(
- BW_Utils.getBW_NonMeta_MaterialItems(NonMeta_MaterialItem.TiberiumCell_1, 1)),
+ new GT_ItemStack(BW_NonMeta_MaterialItems.TiberiumCell_1.get(1)),
50e3,
1,
"Bartworks",
@@ -577,8 +577,7 @@ public class ComponentFactory {
new FuelRod(
52,
"dualFuelRodTiberium",
- new GT_ItemStack(
- BW_Utils.getBW_NonMeta_MaterialItems(NonMeta_MaterialItem.TiberiumCell_2, 1)),
+ new GT_ItemStack(BW_NonMeta_MaterialItems.TiberiumCell_2.get(1)),
50e3,
1,
"Bartworks",
@@ -591,8 +590,7 @@ public class ComponentFactory {
new FuelRod(
53,
"quadFuelRodTiberium",
- new GT_ItemStack(
- BW_Utils.getBW_NonMeta_MaterialItems(NonMeta_MaterialItem.TiberiumCell_4, 1)),
+ new GT_ItemStack(BW_NonMeta_MaterialItems.TiberiumCell_4.get(1)),
50e3,
1,
"Bartworks",
@@ -605,7 +603,7 @@ public class ComponentFactory {
new FuelRod(
54,
"fuelRodTheCore",
- new GT_ItemStack(BW_Utils.getBW_NonMeta_MaterialItems(NonMeta_MaterialItem.TheCoreCell, 1)),
+ new GT_ItemStack(BW_NonMeta_MaterialItems.TheCoreCell.get(1)),
100e3,
1,
"Bartworks",