*Fix several typos.

--HG--
branch : trunk
This commit is contained in:
maximius
2009-10-17 03:52:49 -07:00
parent b6a9312727
commit a641b82f03
4 changed files with 6 additions and 5 deletions

View File

@@ -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);
}