mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 17:54:48 +01:00
*Add more debug info.
--HG-- branch : trunk
This commit is contained in:
@@ -292,6 +292,7 @@ Player::Player (WorldSession *session): Unit(), m_achievementMgr(this), m_reputa
|
||||
m_ExtraFlags = 0;
|
||||
|
||||
m_spellModTakingSpell = NULL;
|
||||
m_pad = 0;
|
||||
|
||||
// players always accept
|
||||
if(GetSession()->GetSecurity() == SEC_PLAYER)
|
||||
@@ -1126,9 +1127,11 @@ void Player::Update( uint32 p_time )
|
||||
// If this is set during update SetSpellModTakingSpell call is missing somewhere in the code
|
||||
// Having this would prevent more aura charges to be dropped, so let's crash
|
||||
//assert (!m_spellModTakingSpell);
|
||||
if(m_spellModTakingSpell)
|
||||
if(m_pad || m_spellModTakingSpell)
|
||||
{
|
||||
sLog.outCrash("Player has m_spellModTakingSpell %u during update!", m_spellModTakingSpell->m_spellInfo->Id);
|
||||
sLog.outCrash("Player has m_pad %u during update!", m_pad);
|
||||
if(m_spellModTakingSpell)
|
||||
sLog.outCrash("Player has m_spellModTakingSpell %u during update!", m_spellModTakingSpell->m_spellInfo->Id);
|
||||
assert(false);
|
||||
m_spellModTakingSpell = NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user