Closed GoogleCodeExporter closed 9 years ago
Found a fix for this
In Kernel 'Auto Healer Timer' changed
If ManaPoints < Spells.GetSpellMana(HealSpell.Name) Then Exit Sub
to
If ManaPoints < Spells.GetSpellMana(HealSpell.Words) Then Exit Sub
And in Fuction GetSpellMana added
If String.Compare(Name, Spell.Words, True) = 0 Then
Return Spell.ManaPoints
End If
It was checking by spell name, not it's work. In the XML file "Intense Healing"
is
healing spell and rune. When checking if enough mana it was taking rune mana,
but
was casting healing words. Changing from Name to Words fixed it. Another Fix is
to
Add Rune word at end of each rune
Original comment by Zaoshi.K...@gmail.com
on 13 Mar 2008 at 1:17
Thank's for the info! :) If every bug report was like that world would be much
better place to live! :)
Original comment by Oskari.V...@gmail.com
on 13 Mar 2008 at 5:40
Thanks for the info, this issue is now *Fixed*.
Original comment by cameri2...@gmail.com
on 24 Mar 2008 at 2:35
Original issue reported on code.google.com by
Zaoshi.K...@gmail.com
on 13 Mar 2008 at 6:10