From 22825e69eb1e0b06bcd9cccfd300b39b90a507a0 Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Tue, 25 Apr 2023 18:47:46 +0200 Subject: fix cosmic neutronium plates and infinity plate ids --- .../tectech/loader/recipe/ResearchStationAssemblyLine.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java') 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), -- cgit