diff options
author | SmallJoker <mk939@ymail.com> | 2016-07-17 22:26:23 +0200 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2016-10-08 00:08:50 +0100 |
commit | d4a2e23793d2260f263396480b6552a37c8ebf6b (patch) | |
tree | 5afdafd05dbe18a3c44eedda51e2cb439826d84e | |
parent | 0a16e53b40d347db7dcd04cb694d0f8f2ed1a5a7 (diff) | |
download | minetest-d4a2e23793d2260f263396480b6552a37c8ebf6b.tar.gz minetest-d4a2e23793d2260f263396480b6552a37c8ebf6b.tar.bz2 minetest-d4a2e23793d2260f263396480b6552a37c8ebf6b.zip |
Textures: Ignore unknown node in override.txt
-rw-r--r-- | src/nodedef.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/nodedef.cpp b/src/nodedef.cpp index bfb2999bd..fa2e621f2 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -1144,13 +1144,8 @@ void CNodeDefManager::applyTextureOverrides(const std::string &override_filepath } content_t id; - if (!getId(splitted[0], id)) { - infostream << override_filepath - << ":" << line_c << " Could not apply texture override \"" - << line << "\": Unknown node \"" - << splitted[0] << "\"" << std::endl; - continue; - } + if (!getId(splitted[0], id)) + continue; // Ignore unknown node ContentFeatures &nodedef = m_content_features[id]; |