Skip to content

Commit

Permalink
Dont log recipe reg
Browse files Browse the repository at this point in the history
  • Loading branch information
md5sha256 committed Dec 23, 2024
1 parent 340fc8e commit fece143
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,7 @@ public void onEnable() {

public void registerRecipes(@NotNull Server server) {
for (IDrugComponent component : this.drugRegistry.components()) {
component.recipe().ifPresent(recipe -> {
getLogger().info("Registered recipe for " + component.displayName());
server.addRecipe(recipe);
});
component.recipe().ifPresent(server::addRecipe);
}
}
}

0 comments on commit fece143

Please sign in to comment.