summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2018-12-11 23:54:29 +0100
committerPetr Mrázek <peterix@gmail.com>2018-12-11 23:54:29 +0100
commit3fe9165201b31f13ce772fb8d029a81eaadcdb8b (patch)
tree61f01d032bf9c2525c67bd72d19e5ef763e8e7ba /api
parent13b293dd6518f8e3c80afd6fe40629e3caee69dc (diff)
downloadMultiMC-3fe9165201b31f13ce772fb8d029a81eaadcdb8b.tar
MultiMC-3fe9165201b31f13ce772fb8d029a81eaadcdb8b.tar.gz
MultiMC-3fe9165201b31f13ce772fb8d029a81eaadcdb8b.tar.lz
MultiMC-3fe9165201b31f13ce772fb8d029a81eaadcdb8b.tar.xz
MultiMC-3fe9165201b31f13ce772fb8d029a81eaadcdb8b.zip
NOISSUE fix logging for gametype
Diffstat (limited to 'api')
-rw-r--r--api/logic/minecraft/World.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/api/logic/minecraft/World.cpp b/api/logic/minecraft/World.cpp
index 5da562aa..490abdf4 100644
--- a/api/logic/minecraft/World.cpp
+++ b/api/logic/minecraft/World.cpp
@@ -385,7 +385,7 @@ void World::loadFromLevelDat(QByteArray data)
qDebug() << "World Name:" << m_actualName;
qDebug() << "Last Played:" << m_lastPlayed.toString();
qDebug() << "Seed:" << m_randomSeed;
- qDebug() << "GameMode:" << m_randomSeed;
+ qDebug() << "GameMode:" << m_gameType;
}
catch (const nbt::io::input_error &e)
{