aboutsummaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authormaximius <none@none>2009-10-17 03:52:49 -0700
committermaximius <none@none>2009-10-17 03:52:49 -0700
commita641b82f030d5cef5eba4f931781ee0fdaa46388 (patch)
tree2aa2c37455b3c09f126090eb5264a202cb4724a3 /src/game
parentb6a931272700312797bae92f514e7e3185385d64 (diff)
*Fix several typos.
--HG-- branch : trunk
Diffstat (limited to 'src/game')
-rw-r--r--src/game/Player.cpp5
-rw-r--r--src/game/Unit.cpp2
2 files changed, 4 insertions, 3 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp
index e9634722fab..2d49a7559e9 100644
--- a/src/game/Player.cpp
+++ b/src/game/Player.cpp
@@ -22104,8 +22104,9 @@ void Player::ActivateSpec(uint8 spec)
uint32 glyph = m_Glyphs[m_activeSpec][slot];
// apply primary glyph
- if (glyph && GlyphPropertiesEntry const *gp = sGlyphPropertiesStore.LookupEntry(glyph))
- CastSpell(this, gp->SpellId, true);
+ if (glyph)
+ if (GlyphPropertiesEntry const *gp = sGlyphPropertiesStore.LookupEntry(glyph))
+ CastSpell(this, gp->SpellId, true);
SetGlyph(slot, glyph);
}
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index b349182ecfc..ec132ee3e7b 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -4138,7 +4138,7 @@ void Unit::RemoveAllAuras(uint64 casterGUID, Aura * except /*=NULL*/, bool negat
AuraMap::iterator iter = m_Auras.begin();
while (!m_Auras.empty())
{
- Aura * aur = (*iter)->GetParentAura();
+ Aura * aur = (*iter).second;
if (aur != except && (!casterGUID || aur->GetCasterGUID()==casterGUID)
&& ((negative && !aur->IsPositive()) || (positive && aur->IsPositive())))
RemoveAura(aur);