From 1ca9fc8961a48ba8d8da06601cd64583a577da2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Tue, 8 Sep 2015 09:28:14 +0200 Subject: NOISSUE catch more errors from nbt lib --- logic/minecraft/World.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'logic') diff --git a/logic/minecraft/World.cpp b/logic/minecraft/World.cpp index 4ef7845f..977a03cf 100644 --- a/logic/minecraft/World.cpp +++ b/logic/minecraft/World.cpp @@ -72,6 +72,13 @@ void World::repath(const QFileInfo &file) catch(std::out_of_range e) { // fallback for old world formats + qWarning() << "String NBT tag" << name << "could not be found. Defaulting to" << fallback; + return fallback; + } + catch(std::bad_cast e) + { + // type mismatch + qWarning() << "NBT tag" << name << "could not be converted to string. Defaulting to" << fallback; return fallback; } }; @@ -91,6 +98,13 @@ void World::repath(const QFileInfo &file) catch(std::out_of_range e) { // fallback for old world formats + qWarning() << "Long NBT tag" << name << "could not be found. Defaulting to" << fallback; + return fallback; + } + catch(std::bad_cast e) + { + // type mismatch + qWarning() << "NBT tag" << name << "could not be converted to long. Defaulting to" << fallback; return fallback; } }; -- cgit v1.2.3