24 lines
1.2 KiB
Lua
24 lines
1.2 KiB
Lua
---@class QuestieNPCBlacklist
|
|
local QuestieNPCBlacklist = QuestieLoader:CreateModule("QuestieNPCBlacklist")
|
|
---@type QuestieCorrections
|
|
local QuestieCorrections = QuestieLoader:ImportModule("QuestieCorrections")
|
|
|
|
---@return table<NpcId, boolean>
|
|
function QuestieNPCBlacklist:Load()
|
|
return {
|
|
[8001] = true,
|
|
[13151] = QuestieCorrections.CLASSIC_ONLY, -- Syndicate Master Ryson
|
|
[13153] = QuestieCorrections.CLASSIC_ONLY, -- Commander Mulfort
|
|
[13154] = QuestieCorrections.CLASSIC_ONLY, -- Commander Louis Philips
|
|
[13319] = QuestieCorrections.CLASSIC_ONLY, -- Commander Duffy
|
|
[13320] = QuestieCorrections.CLASSIC_ONLY, -- Commander Karl Philips
|
|
[13377] = QuestieCorrections.CLASSIC_ONLY, -- Master Engineer Zinfizzlex
|
|
[13446] = QuestieCorrections.CLASSIC_ONLY, -- Field Marshal Teravaine
|
|
[13449] = QuestieCorrections.CLASSIC_ONLY, -- Warmaster Garrick
|
|
[15799] = QuestieCorrections.CLASSIC_ONLY, -- Colossus Researcher Eazel (AQ Opening event)
|
|
[17544] = true, -- M'uru in Silvermoon City removed starting with SWP patch
|
|
[21155] = true, -- Bloodelf War Effort Recruiter
|
|
[178420] = QuestieCorrections.WOTLK_ONLY, -- removed in WotLK
|
|
}
|
|
end
|