Misc fixes

This commit is contained in:
hondacrx
2021-04-28 11:00:29 -04:00
parent 5b0391b1d9
commit be9da02534
3 changed files with 6 additions and 5 deletions
+4 -3
View File
@@ -2840,14 +2840,15 @@ namespace Game.Entities
if (IsTypeId(TypeId.Player))
ToPlayer().SendAutoRepeatCancel(this);
m_currentSpells[spellType] = null;
if (spell.GetState() != SpellState.Finished)
spell.Cancel();
else
spell.SetReferencedFromCurrent(false);
if (IsCreature() && IsAIEnabled)
ToCreature().GetAI().OnSpellCastInterrupt(spell.GetSpellInfo());
m_currentSpells[spellType] = null;
spell.SetReferencedFromCurrent(false);
}
}
public void UpdateInterruptMask()