Skip to content

Commit

Permalink
Fix CME
Browse files Browse the repository at this point in the history
  • Loading branch information
yor42 committed Nov 18, 2024
1 parent 47c2915 commit 8c41102
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ public void clearRefine(){

@GroovyBlacklist
public void removeByMode(TileMetalFormer.Mode mode){
for (MetalFormerRecipes.RecipeObject recipe : MetalFormerRecipes.INSTANCE.getAllRecipes()) {
ArrayList<MetalFormerRecipes.RecipeObject> objects = new ArrayList<>(MetalFormerRecipes.INSTANCE.getAllRecipes());
for (MetalFormerRecipes.RecipeObject recipe : objects) {
if (recipe.mode == mode) {
this.remove(recipe);
}
Expand Down

0 comments on commit 8c41102

Please sign in to comment.