WQAchievements

WQAchievements

250k Downloads

Mission table missions missing since 10.0.7 (potential fix included)

tflo opened this issue ยท 1 comments

commented

It seems with your adaptation to the 10.0.7 changes to Enum.GarrisonType, you accidentally used GarrisonFollowerType instead of GarrisonType.

This fixes it for me:

*** /Users/tom/Downloads/WQAchievements--100007/WQAchievements.lua	Wed Mar 22 08:44:44 2023
--- /Applications/World of Warcraft/_retail_/Interface/AddOns/WQAchievements/WQAchievements.lua	Tue Mar 28 15:48:39 2023
***************
*** 2531,2540 ****
  end
  
  local LE_GARRISON_TYPE = {
! 	[6] = Enum.GarrisonType.FollowerType_6_0_GarrisonFollower,
! 	[7] = Enum.GarrisonType.FollowerType_7_0_GarrisonFollower,
! 	[8] = Enum.GarrisonType.FollowerType_8_0_GarrisonFollower,
! 	[9] = Enum.GarrisonType.FollowerType_9_0_GarrisonFollower
  }
  
  function WQA:CheckMissions()
--- 2531,2540 ----
  end
  
  local LE_GARRISON_TYPE = {
! 	[6] = Enum.GarrisonType.Type_6_0_Garrison,
! 	[7] = Enum.GarrisonType.Type_7_0_Garrison,
! 	[8] = Enum.GarrisonType.Type_8_0_Garrison,
! 	[9] = Enum.GarrisonType.Type_9_0_Garrison
  }
  
  function WQA:CheckMissions()

Only tested for Draenor missions, but in theory it should also fix the other expansion's missions.

commented

Thanks for the info.