View Single Post
06/25/20, 01:07 PM   #1
Scootworks
 
Scootworks's Avatar
AddOn Author - Click to view addons
Join Date: Nov 2014
Posts: 312
[open] Maptype_alliance

Where:
source code/ingame/map/worldmapquest_shared.lua


What:
Lua Code:
  1. if mapType == MAPTYPE_WORLD or mapType == MAPTYPE_COSMIC or mapType == MAPTYPE_ALLIANCE then
MAPTYPE_ALLIANCE doesn't exist == nil

Request:
- maybe just check for:
Lua Code:
  1. if GetMapType() > MAPTYPE_ZONE then
  Reply With Quote