Skip to content

Commit b4b50c6

Browse files
committed
fix #297 : Ex Nihilo Missing 'name' parameter in recipe not found
1 parent 96cee6f commit b4b50c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/modtweaker2/mods/exnihilo/handlers

src/main/java/modtweaker2/mods/exnihilo/handlers/Hammer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public static void removeRecipe(IIngredient input, @Optional IIngredient output)
179179
if(!recipes.isEmpty()) {
180180
MineTweakerAPI.apply(new Remove(recipes));
181181
} else {
182-
LogHelper.logWarning(String.format("No %s recipes found for %s and %s. Command ignored!", input.toString(), output.toString()));
182+
LogHelper.logWarning(String.format("No %s recipes found for %s and %s. Command ignored!", name, input.toString(), output.toString()));
183183
}
184184
}
185185

0 commit comments

Comments
 (0)