WoW:API IsActionSelfCastKeyDown: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
m (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 ...)
 
(removedapi)
Line 1: Line 1:
{{wowapi}}
{{wowapi}} {{removedapi|2.2.0|Replaced with {{api|IsModifiedClick}}("SELFCAST")}}
== 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:
<pre>if not IsActionSelfCastKeyDownthen
    function IsActionSelfCastKeyDown()
        return IsModifiedClick("SELFCAST")
    end
end</pre>

Revision as of 23:19, 15 September 2010