Core/Commands: Fixed wrong field being used to determine instance type in .lookup map id

This commit is contained in:
Shauren
2022-01-19 12:37:27 +01:00
parent 18cc0b2e4a
commit 279744efcd

View File

@@ -1434,7 +1434,7 @@ public:
if (mapInfo->IsContinent())
ss << handler->GetTrinityString(LANG_CONTINENT);
switch (mapInfo->MapType)
switch (mapInfo->InstanceType)
{
case MAP_INSTANCE:
ss << handler->GetTrinityString(LANG_INSTANCE);