View Single Post
07-05-12, 07:14 AM   #3
Voyager
A Fallenroot Satyr
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 22
Originally Posted by Kagaro View Post
thos emini dungeons are called senarios correct?

You maybe to use my beta libmapdata to convert and translate as the senario 'cavename' could be used to lookup the info and translate it.
Scenarios have their own mapID. The only maps I found that are classified as microDungeon are the 2 faction shrines.

I just rewrote the GetMapInfo function to get around it.

Code:
local function GetMapInfo(...)
    local mapName, textureWidth, textureHeight, isMicroDungeon, microDungeonName = GetMapInfo(...)
    if isMicroDungeon and microDungeonName then
        return microDungeonName, textureWidth, textureHeight, isMicroDungeon, microDungeonName
    end
    return mapName, textureWidth, textureHeight, isMicroDungeon
end