Skip to content

Commit

Permalink
Correct line (character limit)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmallJoker authored and sfan5 committed Oct 16, 2017
1 parent 5f9c50a commit 0ca1211
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/craftdef.cpp
Expand Up @@ -912,7 +912,8 @@ class CCraftDefManager: public IWritableCraftDefManager
ItemStack is;
is.deSerialize(out.item, gamedef->idef());
if (!is.isKnown(gamedef->idef())) {
infostream << "trying to craft non-existent " << 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 0ca1211

Please sign in to comment.