| 12-03-2006, 10:06 AM | #1 |
This combination in the wrong order causes a bad bug, at least for one way morphing skills like Metamorphosis. The bug appears when you use something like this: JASS:call UnitResetCooldown(someunit) call UnitRemoveBuffs(someunit,true,true) The "fix" is very easy, just exchange the order of the functions, and everything works fine. JASS:call UnitRemoveBuffs(someunit,true,true) call UnitResetCooldown(someunit) That took me very long to figure out, I nearly desperated at that problem. I hope this helps at least some guys, which have similar problems. I've redone my systems once,twice some even thrice, only to find that damn annoyance. |
| 12-03-2006, 06:08 PM | #2 |
UnitResetCooldown has always worked a little weird for me. Maybe this is why, thanks. |
