idTip icon indicating copy to clipboard operation
idTip copied to clipboard

SpellIDs to "Adventure Guide" ?

Open Tga123 opened this issue 3 years ago • 1 comments

How about to add IDs to spells from "Adventure Guide" bosses description? Something like that:

local GSI = C_EncounterJournal.GetSectionInfo
C_EncounterJournal.GetSectionInfo = function(sectionID)
	local sectionInfo = GSI(sectionID)
	if sectionInfo ~= nil and sectionInfo.spellID ~= (nil or 0) then
		sectionInfo.title = sectionInfo.title .. " SpellID: " .. tostring(sectionInfo.spellID)
	end
	return sectionInfo
end

Or any other implementation by you choice.

Tga123 avatar Sep 30 '21 05:09 Tga123