Skip to content

Commit

Permalink
add recipe for Limited Itemfilter (#785)
Browse files Browse the repository at this point in the history
Exchange existing item filter recipe
  • Loading branch information
Dream-Master authored Dec 30, 2023
1 parent e0790be commit 2879a8c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/java/com/dreammaster/recipes/RecipeRemover.java
Original file line number Diff line number Diff line change
Expand Up @@ -905,6 +905,7 @@ public static void run() {
removeRecipeByOutputDelayed(getModItem("EnderIO", "itemItemConduit", 1, 0, missing));
removeRecipeByOutputDelayed(getModItem("EnderIO", "itemBasicFilterUpgrade", 1, 0, missing));
removeRecipeByOutputDelayed(getModItem("EnderIO", "itemBasicFilterUpgrade", 1, 1, missing));
removeRecipeByOutputDelayed(getModItem("EnderIO", "itemLimitedItemFilter", 1, 0, missing));
removeRecipeByOutputDelayed(getModItem("EnderIO", "itemExistingItemFilter", 1, 0, missing));
removeRecipeByOutputDelayed(getModItem("EnderIO", "itemModItemFilter", 1, 0, missing));
removeRecipeByOutputDelayed(getModItem("EnderIO", "itemBigFilterUpgrade", 1, 0, missing));
Expand Down
8 changes: 7 additions & 1 deletion src/main/java/com/dreammaster/scripts/ScriptEnderIO.java
Original file line number Diff line number Diff line change
Expand Up @@ -1716,6 +1716,12 @@ public void loadRecipes() {
getModItem(EnderIO.ID, "itemFrankenSkull", 1, 1, missing))
.itemOutputs(getModItem(EnderIO.ID, "itemBasicFilterUpgrade", 1, 1, missing)).duration(15 * SECONDS)
.eut(64).addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
getModItem(EnderIO.ID, "itemBasicFilterUpgrade", 1, 1, missing),
getModItem(ProjectRedIntegration.ID, "projectred.integration.gate", 1, 26, missing))
.itemOutputs(getModItem(EnderIO.ID, "itemLimitedItemFilter", 1, 0, missing)).duration(15 * SECONDS)
.eut(120).addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(
getModItem(EnderIO.ID, "itemBasicFilterUpgrade", 2, 1, missing),
Expand All @@ -1731,7 +1737,7 @@ public void loadRecipes() {
GT_Values.RA.stdBuilder()
.itemInputs(
getModItem(EnderIO.ID, "itemBasicFilterUpgrade", 1, 1, missing),
getModItem(ProjectRedIntegration.ID, "projectred.integration.gate", 1, 26, missing))
getModItem(ProjectRedIntegration.ID, "projectred.integration.gate", 1, 20, missing))
.itemOutputs(getModItem(EnderIO.ID, "itemExistingItemFilter", 1, 0, missing)).duration(15 * SECONDS)
.eut(120).addTo(assemblerRecipes);
GT_Values.RA.stdBuilder()
Expand Down

0 comments on commit 2879a8c

Please sign in to comment.