OnUpdateFix is an addon to Fix addons that use skills/actions in the OnUpdate functions e.g. nBuff
How to use: ( for example ill use nBuff since its already in the OnUpdateFix.lua )
- Remove the OnUpdate from the .xml of the addon or make it into a comment
<!--<OnUpdate>
nBuff_OnUpdate(arg1);
</OnUpdate> -->
- Put the OnUpdate in the OnUpdateFix.lua
--############################################################################
--## - OnUpdate functions of the addons
--## !!Make sure to remove the OnUpdate part from the .xml of the addon!!
--############################################################################
nBuff_OnUpdate();
--############################################################################
--## - end
--############################################################################