WoW API: IsActionSelfCastKeyDown

From AddOn Studio
Revision as of 19:54, 26 October 2007 by WoWWiki>Egingell (New page: == Removed == This function was removed in 2.2.x. For backward compatibility (maybe you have a private server?) or you'd rather not track down every single call to this function, just add ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < IsActionSelfCastKeyDown

Removed

This function was removed in 2.2.x. For backward compatibility (maybe you have a private server?) or you'd rather not track down every single call to this function, just add this somewhere in the Lua file:

if not IsActionSelfCastKeyDownthen
    function IsActionSelfCastKeyDown()
        return IsModifiedClick("SELFCAST")
    end
end