From 665731d940b6e6e218befc8a21885fa02e6acdaa Mon Sep 17 00:00:00 2001 From: GTNH-Colen <54497873+GTNH-Colen@users.noreply.github.com> Date: Sat, 11 Feb 2023 21:09:43 +0000 Subject: Fix wildcard issue --- src/main/java/common/Recipes.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/common/Recipes.java') diff --git a/src/main/java/common/Recipes.java b/src/main/java/common/Recipes.java index f275d1d37a..4f7ff2c9e6 100644 --- a/src/main/java/common/Recipes.java +++ b/src/main/java/common/Recipes.java @@ -537,7 +537,7 @@ public class Recipes { // Controller final Object[] lsc_recipe = { "LPL", "CBC", "LPL", 'L', - ItemList.IC2_LapotronCrystal.getWithCharge(1L, 10000000), 'P', ItemList.Circuit_Chip_PIC.get(1L), 'C', + ItemList.IC2_LapotronCrystal.getWildcard(1L), 'P', ItemList.Circuit_Chip_PIC.get(1L), 'C', OrePrefixes.circuit.get(Materials.Master), 'B', new ItemStack(Blocks.lscLapotronicEnergyUnit, 1, 0), }; GT_ModHandler.addCraftingRecipe(TileEntities.lsc.getStackForm(1), lsc_recipe); -- cgit From 911640a56e2ef3bc72e54b37e49bec64c5970e5b Mon Sep 17 00:00:00 2001 From: GitHub GTNH Actions <> Date: Sat, 11 Feb 2023 21:14:09 +0000 Subject: spotlessApply --- src/main/java/common/Recipes.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/common/Recipes.java') diff --git a/src/main/java/common/Recipes.java b/src/main/java/common/Recipes.java index 4f7ff2c9e6..3e4d0e659b 100644 --- a/src/main/java/common/Recipes.java +++ b/src/main/java/common/Recipes.java @@ -536,9 +536,9 @@ public class Recipes { private static void registerRecipes_LSC() { // Controller - final Object[] lsc_recipe = { "LPL", "CBC", "LPL", 'L', - ItemList.IC2_LapotronCrystal.getWildcard(1L), 'P', ItemList.Circuit_Chip_PIC.get(1L), 'C', - OrePrefixes.circuit.get(Materials.Master), 'B', new ItemStack(Blocks.lscLapotronicEnergyUnit, 1, 0), }; + final Object[] lsc_recipe = { "LPL", "CBC", "LPL", 'L', ItemList.IC2_LapotronCrystal.getWildcard(1L), 'P', + ItemList.Circuit_Chip_PIC.get(1L), 'C', OrePrefixes.circuit.get(Materials.Master), 'B', + new ItemStack(Blocks.lscLapotronicEnergyUnit, 1, 0), }; GT_ModHandler.addCraftingRecipe(TileEntities.lsc.getStackForm(1), lsc_recipe); // Blocks -- cgit