aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/game/Player.cpp40
-rw-r--r--src/game/Spell.cpp14
2 files changed, 27 insertions, 27 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp
index b036fd1118e..6485355a294 100644
--- a/src/game/Player.cpp
+++ b/src/game/Player.cpp
@@ -16706,26 +16706,26 @@ void Player::AddSpellMod(SpellModifier* mod, bool apply)
}
}
-// Restore spellmods in case of failed cast
-void Player::RestoreSpellMods(Spell const* spell)
-{
- if(!spell || (m_SpellModRemoveCount == 0))
- return;
-
- for(int i=0;i<MAX_SPELLMOD;++i)
- {
- for (SpellModList::iterator itr = m_spellMods[i].begin(); itr != m_spellMods[i].end();++itr)
- {
- SpellModifier *mod = *itr;
-
- if (mod && mod->charges == -1 && mod->lastAffected == spell)
- {
- mod->lastAffected = NULL;
- mod->charges = 1;
- m_SpellModRemoveCount--;
- }
- }
- }
+// Restore spellmods in case of failed cast
+void Player::RestoreSpellMods(Spell const* spell)
+{
+ if(!spell || (m_SpellModRemoveCount == 0))
+ return;
+
+ for(int i=0;i<MAX_SPELLMOD;++i)
+ {
+ for (SpellModList::iterator itr = m_spellMods[i].begin(); itr != m_spellMods[i].end();++itr)
+ {
+ SpellModifier *mod = *itr;
+
+ if (mod && mod->charges == -1 && mod->lastAffected == spell)
+ {
+ mod->lastAffected = NULL;
+ mod->charges = 1;
+ m_SpellModRemoveCount--;
+ }
+ }
+ }
}
void Player::RemoveSpellMods(Spell const* spell)
diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp
index 001993201e0..29892fcfde3 100644
--- a/src/game/Spell.cpp
+++ b/src/game/Spell.cpp
@@ -2721,13 +2721,13 @@ void Spell::finish(bool ok)
if(!m_caster->IsNonMeleeSpellCasted(false, false, true))
m_caster->clearUnitState(UNIT_STAT_CASTING);
- if(!ok)
- {
- //restore spell mods
- if (m_caster->GetTypeId() == TYPEID_PLAYER)
- ((Player*)m_caster)->RestoreSpellMods(this);
- return;
- }
+ if(!ok)
+ {
+ //restore spell mods
+ if (m_caster->GetTypeId() == TYPEID_PLAYER)
+ ((Player*)m_caster)->RestoreSpellMods(this);
+ return;
+ }
// other code related only to successfully finished spells
//remove spell mods