Skip to content

Commit

Permalink
fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
EXio4 authored and sfan5 committed Oct 16, 2017
1 parent 422e502 commit a85ee85
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 nonexistant " << out.item << ", ignoring recipe" << std::endl;
errorstream << "trying to craft nonexistent " << out.item << ", ignoring recipe" << std::endl;
continue;
}

Expand Down

0 comments on commit a85ee85

Please sign in to comment.