Skip to content

Commit

Permalink
fix CME from untested brewing potion code
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Sep 23, 2022
1 parent 84c8438 commit 1a1a120
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -160,7 +160,7 @@ public void clearBrewingRecipes() {
return;
}
PotionBrewer brewer = Bukkit.getPotionBrewer();
for (NamespacedKey mix : potionMixes.keySet()) {
for (NamespacedKey mix : new ArrayList<>(potionMixes.keySet())) {
brewer.removePotionMix(mix);
potionMixes.remove(mix);
}
Expand Down

0 comments on commit 1a1a120

Please sign in to comment.