430 B
430 B
Function: RemoveSkillBonus(spawn)
Description: Remove's any skill bonuses added to the Spawn (if outside a spells script) or all spell targets of a spell from AddSkillBonus (if inside a spell script).
Parameters:
spawn
(Spawn) - Spawn object referencespawn
.
Returns: None.
Example:
-- From Spells/AA/BattlemagesFervor.lua
function remove(Caster, Target)
RemoveSkillBonus(Target)
end