From d4a2e23793d2260f263396480b6552a37c8ebf6b Mon Sep 17 00:00:00 2001 From: SmallJoker Date: Sun, 17 Jul 2016 22:26:23 +0200 Subject: Textures: Ignore unknown node in override.txt --- src/nodedef.cpp | 9 ++------- 1 file 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]; -- cgit v1.2.3