diff options
author | Martin Robertz <dream-master@gmx.net> | 2023-04-25 18:47:46 +0200 |
---|---|---|
committer | Martin Robertz <dream-master@gmx.net> | 2023-04-25 18:47:46 +0200 |
commit | 22825e69eb1e0b06bcd9cccfd300b39b90a507a0 (patch) | |
tree | ef3c2cd10f1d7c7db3126e0c45f291bd854109cb /src/main | |
parent | eb414d5bf92248b509a6e1b4a11d40b5de3dcc04 (diff) | |
download | GT5-Unofficial-22825e69eb1e0b06bcd9cccfd300b39b90a507a0.tar.gz GT5-Unofficial-22825e69eb1e0b06bcd9cccfd300b39b90a507a0.tar.bz2 GT5-Unofficial-22825e69eb1e0b06bcd9cccfd300b39b90a507a0.zip |
fix cosmic neutronium plates and infinity plate ids
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/com/github/technus/tectech/loader/recipe/ResearchStationAssemblyLine.java | 8 |
1 files changed, 4 insertions, 4 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 25724194a0..2b902b2a87 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 @@ -2671,11 +2671,11 @@ public class ResearchStationAssemblyLine implements Runnable { // Large Bedrockium Plate getModItem(TinkerConstruct.ID, "heavyPlate", 1, 315), // Large Cosmic Neutronium Plate - getModItem(TinkerConstruct.ID, "heavyPlate", 1, 500), + getModItem(TinkerConstruct.ID, "heavyPlate", 1, 1671), // Large Shirabon Plate largeShirabonPlate, // Large Infinity Plate - getModItem(TinkerConstruct.ID, "heavyPlate", 1, 501), + getModItem(TinkerConstruct.ID, "heavyPlate", 1, 1669), // UV Solar panel getModItem(SuperSolarPanels.ID, "PhotonicSolarPanel", 1, 0), @@ -3163,11 +3163,11 @@ public class ResearchStationAssemblyLine implements Runnable { // Large Bedrockium Plate getModItem(TinkerConstruct.ID, "heavyPlate", 1, 315), // Large Cosmic Neutronium Plate - getModItem(TinkerConstruct.ID, "heavyPlate", 1, 500), + getModItem(TinkerConstruct.ID, "heavyPlate", 1, 1671), // Large Shirabon Plate largeShirabonPlate, // Large Infinity Plate - getModItem(TinkerConstruct.ID, "heavyPlate", 1, 501), + getModItem(TinkerConstruct.ID, "heavyPlate", 1, 1669), // UV Solar panel getModItem(SuperSolarPanels.ID, "PhotonicSolarPanel", 1, 0), |