diff options
author | GDCloud <93287602+GDCloudstrike@users.noreply.github.com> | 2024-08-22 20:43:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 18:43:17 +0000 |
commit | 58081f5595fe30db81a00f6bb098cf6b3f20f141 (patch) | |
tree | ebb73db86feea281c4207b484d65b093deed8d69 /src/main/java | |
parent | 4fd0bb64f33d83e0322e88f4a887ef907bae1ae2 (diff) | |
download | GT5-Unofficial-58081f5595fe30db81a00f6bb098cf6b3f20f141.tar.gz GT5-Unofficial-58081f5595fe30db81a00f6bb098cf6b3f20f141.tar.bz2 GT5-Unofficial-58081f5595fe30db81a00f6bb098cf6b3f20f141.zip |
Fix MEBF controller amount in DTPF controller Recipe (#2944)
fix mebf amount
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java b/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java index 1b31ed3552..4617117b04 100644 --- a/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java +++ b/src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java @@ -729,8 +729,8 @@ public class ResearchStationAssemblyLine implements Runnable { 4096, (int) TierEU.RECIPE_UIV, 1, - new Object[] { ItemList.Casing_Dim_Bridge.get(4), ItemRegistry.megaMachines[0], - ItemList.Hatch_Energy_UEV.get(4L), + new Object[] { ItemList.Casing_Dim_Bridge.get(4), + GT_Utility.copyAmount(16, ItemRegistry.megaMachines[0]), ItemList.Hatch_Energy_UEV.get(4L), GT_OreDictUnificator.get(OrePrefixes.wireGt16, Materials.SuperconductorUEV, 6), ItemList.Reactor_Coolant_Sp_6.get(1L), ItemList.Reactor_Coolant_Sp_6.get(1L), ItemList.Reactor_Coolant_Sp_6.get(1L), ItemList.Reactor_Coolant_Sp_6.get(1L), |