Thread: Map Error
View Single Post
03-06-10, 03:29 PM   #5
Slakah
A Molten Giant
 
Slakah's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2007
Posts: 863
This is what I used to use before I quit WoW, it might still work

Code:
UIPanelWindows["WorldMapFrame"] = nil
hooksecurefunc(WorldMapFrame, "Show", function(self)
	self:SetScale(0.75)
	self:EnableKeyboard(false)
	BlackoutWorld:Hide()
	WorldMapFrame:EnableMouse(false)
end)
  Reply With Quote