Skip to content

Commit

Permalink
fix: fuel rod to depleted fuel rod skip
Browse files Browse the repository at this point in the history
  • Loading branch information
loxoDev committed Jun 13, 2024
1 parent bba511e commit 4d3e770
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,12 @@ public static void register() {
}

private static void processFuelRod(OrePrefix orePrefix, Material material, FissionFuelProperty oreProperty) {
SPENT_FUEL_POOL_RECIPES.recipeBuilder().duration(10000).EUt(20) // This is fine, since it goes up to 320x
// parallel
.input(fuelRod, material)
.output(fuelRodDepleted, material)
.buildAndRegister();

MACERATOR_RECIPES.recipeBuilder().duration(200).EUt(VA[LV])
.input(fuelRodDepleted, material)
.output(dust, Zircaloy, 4)
.buildAndRegister();

// This is fine, since it goes up to 320x parallel
SPENT_FUEL_POOL_RECIPES.recipeBuilder().duration(10000).EUt(20)
.input(fuelRodHotDepleted, material)
.output(fuelRodDepleted, material)
Expand Down

0 comments on commit 4d3e770

Please sign in to comment.