diff --git a/python/items/spell_arrow.py b/python/items/spell_arrow.py index 44a715c83..94cd9e33b 100644 --- a/python/items/spell_arrow.py +++ b/python/items/spell_arrow.py @@ -15,5 +15,5 @@ if spells and victim: spellob = Crossfire.CreateObjectByName(archetype) if spellob: for r in range(0, int(quantity)): - victim.CastAbility(spellob, 0, "") + victim.Cast(spellob, 0, "") spellob.Remove()