|
8 | 8 | import static com.Nxer.TwistSpaceTechnology.util.enums.TierEU.RECIPE_ZPM; |
9 | 9 | import static com.google.common.math.LongMath.pow; |
10 | 10 | import static gregtech.api.enums.Mods.GTPlusPlus; |
11 | | -import static gregtech.api.enums.Mods.GalaxySpace; |
12 | 11 | import static gregtech.api.enums.Mods.GoodGenerator; |
13 | 12 | import static gregtech.api.enums.Mods.GraviSuite; |
14 | 13 | import static gregtech.api.enums.Mods.GregTech; |
|
62 | 61 | import com.Nxer.TwistSpaceTechnology.util.TstUtils; |
63 | 62 | import com.Nxer.TwistSpaceTechnology.util.recipes.TST_RecipeBuilder; |
64 | 63 | import com.dreammaster.gthandler.CustomItemList; |
| 64 | +import com.gtnewhorizons.gtnhintergalactic.block.IGBlocks; |
| 65 | +import com.gtnewhorizons.gtnhintergalactic.item.IGItems; |
65 | 66 |
|
66 | 67 | import bartworks.system.material.WerkstoffLoader; |
67 | 68 | import goodgenerator.items.GGMaterial; |
@@ -301,7 +302,7 @@ public void loadSpecialRecipes() { |
301 | 302 | ItemList.Emitter_UMV.get(4), |
302 | 303 | ItemList.Sensor_UMV.get(4)) |
303 | 304 | .fluidInputs(new FluidStack(solderUEV, 144 * 256)) |
304 | | - .itemOutputs(GTUtility.copyAmountUnsafe(8192, getModItem(GalaxySpace.ID, "item.DysonSwarmParts", 1))) |
| 305 | + .itemOutputs(GTUtility.copyAmountUnsafe(8192, new ItemStack(IGItems.DysonSwarmItems, 1))) |
305 | 306 | .eut(100000000) |
306 | 307 | .duration(20 * 50) |
307 | 308 | .addTo(MASL); |
@@ -929,8 +930,8 @@ public void loadSpecialRecipes() { |
929 | 930 | getModItem(SuperSolarPanels.ID, "bluecomponent", 64), |
930 | 931 |
|
931 | 932 | boltList[absoluteTier], |
932 | | - getModItem(GalaxySpace.ID, "dysonswarmparts", (absoluteTier + 1) * 4, 2), |
933 | | - getModItem(GalaxySpace.ID, "dysonswarmparts", (absoluteTier + 1) * 4, 1), |
| 933 | + new ItemStack(IGBlocks.DysonSwarmCasing, (absoluteTier + 1) * 4, 2), |
| 934 | + new ItemStack(IGBlocks.DysonSwarmCasing, (absoluteTier + 1) * 4, 1), |
934 | 935 | getModItem(GregTech.ID, "gt.blockmachines", (absoluteTier + 1) * 4, 11107), |
935 | 936 |
|
936 | 937 | ItemList.Energy_Module.get(absoluteTier + 1), |
@@ -988,7 +989,7 @@ public void loadSpecialRecipes() { |
988 | 989 | spatialCasings[absoluteTier], |
989 | 990 | baseCasing, |
990 | 991 | // Dyson Swarm Module. |
991 | | - getModItem(GalaxySpace.ID, "item.DysonSwarmParts", 4 * (absoluteTier + 1), 0), |
| 992 | + new ItemStack(IGItems.DysonSwarmItems, 4 * (absoluteTier + 1), 0), |
992 | 993 |
|
993 | 994 | GTOreDictUnificator |
994 | 995 | .get(OrePrefixes.frameGt, Materials.SuperconductorUMVBase, 4 * (absoluteTier + 1)), |
|
0 commit comments