shagu / pfUI

A User Interface Replacement for World of Warcraft: Vanilla & TBC
https://shagu.org/pfUI
MIT License
333 stars 116 forks source link

[libcast.lua] Align and optimize the implementations of post-hooks in terms of how they invoke CastCustom() #1298

Closed dsidirop closed 4 weeks ago

dsidirop commented 1 month ago
for custom, func in pairs(libcast.customcast) do [...]

Into a simple table-lookup:

local func = libcast.customcast[strlower(rawSpellName)]  -- the rawSpellName is the spell without the rank so we are cool
if not func then return end

func(true)

This issue builds on top of #1294 and #1296