smaitch / Grail

World of Warcraft addon to provide a database of quest information.
31 stars 20 forks source link

Garrison C_Garrison.GetGarrisonInfo in Grail.lua #235

Closed CreepYde closed 4 years ago

CreepYde commented 4 years ago

Line 8791 in Grail.lua must be changed from currentPhase = C_Garrison.GetGarrisonInfo(LE_GARRISON_TYPE_6_0) or 0 to currentPhase = C_Garrison.GetGarrisonInfo(Enum.GarrisonType.Type_6_0)

Line 7142 in Grail.lua must be changed from local buildings = (self.blizzardRelease >= 22248) and C_Garrison.GetBuildings(LE_GARRISON_TYPE_6_0) or C_Garrison.GetBuildings() to local buildings = (self.blizzardRelease >= 22248) and C_Garrison.GetBuildings(Enum.GarrisonType.Type_6_0) or C_Garrison.GetBuildings()

CreepYde commented 4 years ago

Double issue...