diff --git a/changelog b/changelog index d8299cac6..fd944b437 100644 --- a/changelog +++ b/changelog @@ -56,4 +56,4 @@ * Fixed blast furnace NEI handler not cycling through all valid material shapes * Fixed RoR transmitter sending empty signals when unused mappings apply * Fixed hopper IO for battery sockets being entirely broken -* Fixed cargo elevators not dropping the correct amount of segments \ No newline at end of file +* Fixed cargo elevators not dropping the correct amount of segments diff --git a/src/main/java/com/hbm/inventory/recipes/AssemblyMachineRecipes.java b/src/main/java/com/hbm/inventory/recipes/AssemblyMachineRecipes.java index c6a9fe89d..18dab3ac3 100644 --- a/src/main/java/com/hbm/inventory/recipes/AssemblyMachineRecipes.java +++ b/src/main/java/com/hbm/inventory/recipes/AssemblyMachineRecipes.java @@ -141,16 +141,17 @@ public class AssemblyMachineRecipes extends GenericRecipes { .inputItems(new OreDictStack(STEEL.shell(), 4), new OreDictStack(PB.plateCast(), 4), new ComparableStack(ModItems.rod_quad_empty, 10), new OreDictStack(KEY_BROWN, 3))); // powders + String autoCyclotron = "autoswitch.cyclotron"; this.register(new GenericRecipe("ass.partlith").setup(40, 100).outputItems(new ItemStack(ModItems.part_lithium, 8)) - .inputItems(new OreDictStack(LI.dust(), 1))); + .inputItems(new OreDictStack(LI.dust(), 1)).setGroup(autoCyclotron, INSTANCE)); this.register(new GenericRecipe("ass.partberyl").setup(40, 100).outputItems(new ItemStack(ModItems.part_beryllium, 8)) - .inputItems(new OreDictStack(BE.dust(), 1))); + .inputItems(new OreDictStack(BE.dust(), 1)).setGroup(autoCyclotron, INSTANCE)); this.register(new GenericRecipe("ass.partcoal").setup(40, 100).outputItems(new ItemStack(ModItems.part_carbon, 8)) - .inputItems(new OreDictStack(COAL.dust(), 1))); + .inputItems(new OreDictStack(COAL.dust(), 1)).setGroup(autoCyclotron, INSTANCE)); this.register(new GenericRecipe("ass.partcop").setup(40, 100).outputItems(new ItemStack(ModItems.part_copper, 8)) - .inputItems(new OreDictStack(CU.dust(), 1))); + .inputItems(new OreDictStack(CU.dust(), 1)).setGroup(autoCyclotron, INSTANCE)); this.register(new GenericRecipe("ass.partplut").setup(40, 100).outputItems(new ItemStack(ModItems.part_plutonium, 8)) - .inputItems(new OreDictStack(PU.dust(), 1))); + .inputItems(new OreDictStack(PU.dust(), 1)).setGroup(autoCyclotron, INSTANCE)); // bunker blocks this.register(new GenericRecipe("ass.cmbtile").setup(100, 100).outputItems(new ItemStack(ModBlocks.cmb_brick, 8)) diff --git a/src/main/resources/assets/hbm/lang/de_DE.lang b/src/main/resources/assets/hbm/lang/de_DE.lang index a118716c5..04d2c438c 100644 --- a/src/main/resources/assets/hbm/lang/de_DE.lang +++ b/src/main/resources/assets/hbm/lang/de_DE.lang @@ -132,6 +132,7 @@ armorMod.type.special=Spezial ass.nitra=Nitra zu Munition autoswitch=Teil der Rezeptgruppe "%s"$Rezept ändert sich basierend auf das erste Item +autoswitch.cyclotron=Zyklotron-Pulverkisten autoswitch.pile=Wiederaufbereitung Chicago-Pile-Brennstoff autoswitch.plate=Wiederaufbereitung Plattenbrennstoff autoswitch.plates=Metallplatten diff --git a/src/main/resources/assets/hbm/lang/en_US.lang b/src/main/resources/assets/hbm/lang/en_US.lang index 094610c41..400afa1d5 100644 --- a/src/main/resources/assets/hbm/lang/en_US.lang +++ b/src/main/resources/assets/hbm/lang/en_US.lang @@ -187,6 +187,7 @@ armorMod.type.special=Special ass.nitra=Nitra to Ammunition autoswitch=Part of auto switch group "%s"$Recipe changes based on first ingredient +autoswitch.cyclotron=Cyclotron Powder Boxes autoswitch.pile=Reprocessing Chicago Pile Rods autoswitch.plate=Reprocessing Plate Fuel autoswitch.plates=Metal Plates