Thread: Cirk's Fastcast
View Single Post
03-21-06, 06:57 PM   #9
Cirk
A Cobalt Mageweaver
 
Cirk's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2006
Posts: 226
Originally Posted by teedog
I used to spam this. First time launches a PoM instant Frostbolt. Second time starts a normal Frostbolt. Subsequently each press will either have no effect since you're casting Frostbolt or will start a new cast. Eventually the trinket and/or the PoM cooldown will end and the macro will cast those as well.

Not sure why Fastcast is not allowing me to do this.
Ah, I get where you are coming from now, and I know why its not allowing it too! Basically Fastcast checks for the cooldown on the action, and because of the PoM cooldown, won't allow the macro to fire again (oops, damn macros always get me).

If you want to try a fix for this, change line 499 of Fastcast.lua from:
Code:
if (((id ~= _thisActionId) or IsAttackAction(id)) and (GetActionCooldown(id) == 0)) then
to:
Code:
if (((id ~= _thisActionId) or IsAttackAction(id)) and ((GetActionCooldown(id) == 0) or isMacro)) then
Hope that fixes it for you, let me know how it goes!
-- Cirk
__________________
Cirk's Addons
  Reply With Quote