diff options
author | Subv <s.v.h21@hotmail.com> | 2012-02-14 12:46:26 -0500 |
---|---|---|
committer | Subv <s.v.h21@hotmail.com> | 2012-02-14 12:46:26 -0500 |
commit | 8a72aede1641ae19d539ed807e3bb0458c7a65e8 (patch) | |
tree | 19244d00341860f4f7f872af68763b9eaf2e0331 /src/server/game/Spells/Spell.cpp | |
parent | f1182f0884e6d1eb5a279550d1b92d02cddb7c56 (diff) |
Codestyle: Renamed some variables to fit codestyle, corrected order in structure/class fields to match alignment (they use slightly less memory now)
Signed-off-by: Subv <s.v.h21@hotmail.com>
Diffstat (limited to 'src/server/game/Spells/Spell.cpp')
-rwxr-xr-x | src/server/game/Spells/Spell.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Spells/Spell.cpp b/src/server/game/Spells/Spell.cpp index fda186f9c64..506f29af10f 100755 --- a/src/server/game/Spells/Spell.cpp +++ b/src/server/game/Spells/Spell.cpp @@ -4736,8 +4736,8 @@ SpellCastResult Spell::CheckCast(bool strict) if (Player* playerCaster = m_caster->ToPlayer()) { if (playerCaster->GetSession() && condInfo.mLastFailedCondition - && condInfo.mLastFailedCondition->ErrorTextd) - playerCaster->GetSession()->SendNotification(condInfo.mLastFailedCondition->ErrorTextd); + && condInfo.mLastFailedCondition->ErrorTextId) + playerCaster->GetSession()->SendNotification(condInfo.mLastFailedCondition->ErrorTextId); } return SPELL_FAILED_DONT_REPORT; } |