From: Yutao Yuan Date: Mon, 13 Jun 2016 22:29:15 +0000 (+0800) Subject: Move unknown node message when applying texture overrides to infostream (#4218) X-Git-Tag: 0.4.15~349 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1b8dbf072ad042542b6bfb29eaed81b8a21ac38c;p=oweals%2Fminetest.git Move unknown node message when applying texture overrides to infostream (#4218) Texture packs have no way to know what nodes are available, so this shouldn't be a error message. --- diff --git a/src/nodedef.cpp b/src/nodedef.cpp index 1691289c2..764203efc 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -1107,7 +1107,7 @@ void CNodeDefManager::applyTextureOverrides(const std::string &override_filepath content_t id; if (!getId(splitted[0], id)) { - errorstream << override_filepath + infostream << override_filepath << ":" << line_c << " Could not apply texture override \"" << line << "\": Unknown node \"" << splitted[0] << "\"" << std::endl;