Skip to content

Commit

Permalink
Fix #118
Browse files Browse the repository at this point in the history
  • Loading branch information
QartemisT authored Sep 13, 2023
1 parent ee558a8 commit ae4de53
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions DBM-PvP/Battlegrounds/Alterac.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ end

do
local ipairs, type = ipairs, type
local isNewAPI = WOW_PROJECT_ID ~= WOW_PROJECT_CLASSIC
local UnitGUID, GetItemCount, GetNumGossipActiveQuests, SelectGossipActiveQuest, SelectGossipAvailableQuest, IsQuestCompletable, CompleteQuest, GetQuestReward = UnitGUID, GetItemCount, isNewAPI and C_GossipInfo.GetNumActiveQuests or GetNumGossipActiveQuests, isNewAPI and C_GossipInfo.SelectActiveQuest or SelectGossipActiveQuest, isNewAPI and C_GossipInfo.SelectAvailableQuest or SelectGossipAvailableQuest, IsQuestCompletable, CompleteQuest, GetQuestReward
local UnitGUID, GetItemCount, GetNumGossipActiveQuests, SelectGossipActiveQuest, SelectGossipAvailableQuest, IsQuestCompletable, CompleteQuest, GetQuestReward = UnitGUID, GetItemCount, C_GossipInfo and C_GossipInfo.GetNumActiveQuests or GetNumGossipActiveQuests, C_GossipInfo and C_GossipInfo.SelectActiveQuest or SelectGossipActiveQuest, C_GossipInfo and C_GossipInfo.SelectAvailableQuest or SelectGossipAvailableQuest, IsQuestCompletable, CompleteQuest, GetQuestReward

local quests = {
[13442] = { -- Archdruid Renferal [A]
Expand Down

0 comments on commit ae4de53

Please sign in to comment.