Skip to content

Commit

Permalink
Fix done with IsCampaignQuest
Browse files Browse the repository at this point in the history
  • Loading branch information
Neogeekmo committed Aug 15, 2024
1 parent 58704f9 commit 8f74e67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"utf8": "disable"
},
"Lua.workspace.library": [
"~\\.vscode\\extensions\\ketho.wow-api-0.16.5\\Annotations"
"~\\.vscode\\extensions\\ketho.wow-api-0.16.8\\Annotations"
]
}
6 changes: 1 addition & 5 deletions Event.lua
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,7 @@ function AprRC.event.functions.done(event, questId, ...)
local currentStep = AprRC:GetLastStep()
tinsert(currentStep.Done, questId)
else
local step = { Done = { questId } }
step.IsCampaignQuest = AprRC:IsCampaignQuest(questId) or nil
local step = { Done = { questId }, IsCampaignQuest = AprRC:IsCampaignQuest(questId) or nil }
AprRC:SetStepCoord(step)
AprRC:NewStep(step)
end
Expand Down Expand Up @@ -634,9 +633,6 @@ end
-- - GroupTask ["GroupTask"] = 51384, (the questId from Group, step to check if player want to do the group quest)
-- - QuestLineSkip ???? (block group quest if present) ["QuestLineSkip"] = 51226,

-- - QpartPart (rework ?) -> button/command
-- - TrigText (rework ?)

-- MountVehicle / InVehicle (rework)

---------------------
Expand Down

0 comments on commit 8f74e67

Please sign in to comment.