Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix typo in error message
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/craftdef.cpp
|
@@ -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 nonexistant " << out.item << ", ignoring recipe" << std::endl; |
|
|
errorstream << "trying to craft nonexistent " << out.item << ", ignoring recipe" << std::endl; |
|
|
continue; |
|
|
} |
|
|
|
|
|