diff options
author | Yutao Yuan <yyt16384@gmail.com> | 2016-06-14 06:29:15 +0800 |
---|---|---|
committer | est31 <est31@users.noreply.github.com> | 2016-06-14 00:29:15 +0200 |
commit | 1b8dbf072ad042542b6bfb29eaed81b8a21ac38c (patch) | |
tree | 3a18d9e107c0233155948b4a5e86859d39bf43d5 | |
parent | a39d53628283ecbb6d7fa617eadeabe9bc5ef127 (diff) | |
download | minetest-1b8dbf072ad042542b6bfb29eaed81b8a21ac38c.tar.gz minetest-1b8dbf072ad042542b6bfb29eaed81b8a21ac38c.tar.bz2 minetest-1b8dbf072ad042542b6bfb29eaed81b8a21ac38c.zip |
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.
-rw-r--r-- | src/nodedef.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; |