Skip to content

Commit 5f9c50a

Browse files
EXio4sfan5
authored andcommitted
use infostream instead of errorstream when we ignore a craft recipe
1 parent a85ee85 commit 5f9c50a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/craftdef.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ class CCraftDefManager: public IWritableCraftDefManager
912912
ItemStack is;
913913
is.deSerialize(out.item, gamedef->idef());
914914
if (!is.isKnown(gamedef->idef())) {
915-
errorstream << "trying to craft nonexistent " << out.item << ", ignoring recipe" << std::endl;
915+
infostream << "trying to craft non-existent " << out.item << ", ignoring recipe" << std::endl;
916916
continue;
917917
}
918918

0 commit comments

Comments
 (0)