Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Correct line (character limit)
- Loading branch information
Showing
with
2 additions
and
1 deletion.
-
+2
−1
src/craftdef.cpp
|
@@ -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; |
|
|
} |
|
|
|
|
|