Skip to content

Commit 48b1284

Browse files
committed
add circuit markers to CraftingComponent
1 parent 2100c86 commit 48b1284

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

src/main/java/gregtech/loaders/recipe/CraftingComponent.java

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ public static void initializeComponents() {
7070
{7, new UnificationEntry(OrePrefix.circuit, Tier.Ultimate)},
7171
{8, new UnificationEntry(OrePrefix.circuit, Tier.Superconductor)},
7272
{9, new UnificationEntry(OrePrefix.circuit, Tier.Infinite)},
73+
{10, new UnificationEntry(OrePrefix.circuit, Tier.Ultra)},
74+
{11, new UnificationEntry(OrePrefix.circuit, Tier.Insane)},
75+
{12, new UnificationEntry(OrePrefix.circuit, Tier.UMVCircuit)},
76+
{13, new UnificationEntry(OrePrefix.circuit, Tier.UXVCircuit)},
77+
{14, new UnificationEntry(OrePrefix.circuit, Tier.Maximum)}
7378

7479
}).collect(Collectors.toMap(data -> (Integer) data[0], data -> data[1])));
7580

@@ -84,6 +89,11 @@ public static void initializeComponents() {
8489
{6, new UnificationEntry(OrePrefix.circuit, Tier.Ultimate)},
8590
{7, new UnificationEntry(OrePrefix.circuit, Tier.Superconductor)},
8691
{8, new UnificationEntry(OrePrefix.circuit, Tier.Infinite)},
92+
{9, new UnificationEntry(OrePrefix.circuit, Tier.Ultra)},
93+
{10, new UnificationEntry(OrePrefix.circuit, Tier.Insane)},
94+
{11, new UnificationEntry(OrePrefix.circuit, Tier.UMVCircuit)},
95+
{12, new UnificationEntry(OrePrefix.circuit, Tier.UXVCircuit)},
96+
{13, new UnificationEntry(OrePrefix.circuit, Tier.Maximum)}
8797

8898
}).collect(Collectors.toMap(data -> (Integer) data[0], data -> data[1])));
8999

@@ -223,14 +233,14 @@ public static void initializeComponents() {
223233

224234
MOTOR = new Component(Stream.of(new Object[][]{
225235

226-
{1, MetaItems.ELECTRIC_MOTOR_LV.getStackForm(),},
227-
{2, MetaItems.ELECTRIC_MOTOR_MV.getStackForm(),},
228-
{3, MetaItems.ELECTRIC_MOTOR_HV.getStackForm(),},
229-
{4, MetaItems.ELECTRIC_MOTOR_EV.getStackForm(),},
230-
{5, MetaItems.ELECTRIC_MOTOR_IV.getStackForm(),},
231-
{6, MetaItems.ELECTRIC_MOTOR_LUV.getStackForm(),},
232-
{7, MetaItems.ELECTRIC_MOTOR_ZPM.getStackForm(),},
233-
{8, MetaItems.ELECTRIC_MOTOR_UV.getStackForm(),},
236+
{1, MetaItems.ELECTRIC_MOTOR_LV.getStackForm()},
237+
{2, MetaItems.ELECTRIC_MOTOR_MV.getStackForm()},
238+
{3, MetaItems.ELECTRIC_MOTOR_HV.getStackForm()},
239+
{4, MetaItems.ELECTRIC_MOTOR_EV.getStackForm()},
240+
{5, MetaItems.ELECTRIC_MOTOR_IV.getStackForm()},
241+
{6, MetaItems.ELECTRIC_MOTOR_LUV.getStackForm()},
242+
{7, MetaItems.ELECTRIC_MOTOR_ZPM.getStackForm()},
243+
{8, MetaItems.ELECTRIC_MOTOR_UV.getStackForm()},
234244

235245
}).collect(Collectors.toMap(data -> (Integer) data[0], data -> data[1])));
236246

0 commit comments

Comments
 (0)