summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--logic/minecraft/World.cpp14
1 files changed, 14 insertions, 0 deletions
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;
}
};