diff options
author | Intel <chemicstry@gmail.com> | 2014-11-08 20:21:17 +0200 |
---|---|---|
committer | Intel <chemicstry@gmail.com> | 2014-11-08 20:21:17 +0200 |
commit | a7f56c2208a5ae63011721a8fd69b8b2a33ac653 (patch) | |
tree | 85e9348d1af0775a2b24871ab951467a05ee156a /src/server/game/Chat/ChatLink.cpp | |
parent | 4e684f74a8cc7007fbfa5fa06ec822c1b07e2109 (diff) |
Core/DataStores: Updated GameObjectDisplayInfo.dbc, GemProperties.dbc, GlyphProperties.dbc, GlyphSlot.dbc, GuildPerkSpells.dbc structs
Diffstat (limited to 'src/server/game/Chat/ChatLink.cpp')
-rw-r--r-- | src/server/game/Chat/ChatLink.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/game/Chat/ChatLink.cpp b/src/server/game/Chat/ChatLink.cpp index 7e4f1d1a0ff..4077c875511 100644 --- a/src/server/game/Chat/ChatLink.cpp +++ b/src/server/game/Chat/ChatLink.cpp @@ -522,10 +522,10 @@ bool GlyphChatLink::Initialize(std::istringstream& iss) return false; } // Validate glyph's spell - _spell = sSpellMgr->GetSpellInfo(_glyph->SpellId); + _spell = sSpellMgr->GetSpellInfo(_glyph->SpellID); if (!_spell) { - TC_LOG_TRACE("chat.system", "ChatHandler::isValidChatMessage('%s'): got invalid spell id %u in |glyph command", iss.str().c_str(), _glyph->SpellId); + TC_LOG_TRACE("chat.system", "ChatHandler::isValidChatMessage('%s'): got invalid spell id %u in |glyph command", iss.str().c_str(), _glyph->SpellID); return false; } return true; |