aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSampsa <69092953+S4mpsa@users.noreply.github.com>2024-09-12 23:23:05 +0300
committerGitHub <noreply@github.com>2024-09-12 20:23:05 +0000
commit4603dfdeb2ec5c0c4fc322d3e5dd7a692d69508d (patch)
tree6d7cd7d158a4716751ee6f82e8ee5b675f734e11
parent13034a095f288f1e289563f8d4324f5cb5990f6b (diff)
downloadGT5-Unofficial-4603dfdeb2ec5c0c4fc322d3e5dd7a692d69508d.tar.gz
GT5-Unofficial-4603dfdeb2ec5c0c4fc322d3e5dd7a692d69508d.tar.bz2
GT5-Unofficial-4603dfdeb2ec5c0c4fc322d3e5dd7a692d69508d.zip
Add antimatter casings and controllers to ItemLists (#3168)
-rw-r--r--src/main/java/goodgenerator/util/ItemRefer.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/goodgenerator/util/ItemRefer.java b/src/main/java/goodgenerator/util/ItemRefer.java
index f9af30e7df..b8adef08f1 100644
--- a/src/main/java/goodgenerator/util/ItemRefer.java
+++ b/src/main/java/goodgenerator/util/ItemRefer.java
@@ -172,6 +172,14 @@ public final class ItemRefer {
public static ItemRefer Compassline_Casing_UXV = getItemStack(componentAssemblylineCasing, 12);
public static ItemRefer Compassline_Casing_MAX = getItemStack(componentAssemblylineCasing, 13);
+ public static ItemRefer AntimatterForge = getItemStack(AMForge);
+ public static ItemRefer AntimatterGenerator = getItemStack(AMGenerator);
+ public static ItemRefer AntimatterContainmentCasing = getItemStack(antimatterContainmentCasing);
+ public static ItemRefer GravityStabilizationCasing = getItemStack(gravityStabilizationCasing);
+ public static ItemRefer MagneticFluxCasing = getItemStack(magneticFluxCasing);
+ public static ItemRefer ProtomatterActivationCoil = getItemStack(protomatterActivationCoil);
+ public static ItemRefer AntimatterAnnihilationMatrix = getItemStack(antimatterAnnihilationMatrix);
+
private Item mItem = null;
private Block mBlock = null;
private ItemStack mItemStack = null;