Skip to content

Commit

Permalink
use infostream instead of errorstream when we ignore a craft recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
EXio4 authored and sfan5 committed Oct 16, 2017
1 parent a85ee85 commit 5f9c50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/craftdef.cpp
Expand Up @@ -912,7 +912,7 @@ class CCraftDefManager: public IWritableCraftDefManager
ItemStack is;
is.deSerialize(out.item, gamedef->idef());
if (!is.isKnown(gamedef->idef())) {
errorstream << "trying to craft nonexistent " << out.item << ", ignoring recipe" << std::endl;
infostream << "trying to craft non-existent " << out.item << ", ignoring recipe" << std::endl;
continue;
}

Expand Down

0 comments on commit 5f9c50a

Please sign in to comment.