I am wondering where in the database are the buffs stored?
Cause my DB is crashing and i have this.
CBuffMgr& CBuffMgr
That is leading to this code
Code:
CBuffMgr& CBuffMgr::operator =( CBuffMgr & bm )
{
Clear();
for( MAPBUFF::iterator i = bm.m_mapBuffs.begin(); i != bm.m_mapBuffs.end(); ++i )
{
IBuff* pSource = i->second;
IBuff* pDest = CreateBuff( pSource->GetType() );
*pDest = *pSource;
bool bResult = Add( pDest );
ASSERT( bResult );
}
return *this;
}
Cause an char is bugging.
Any help will be appriciated.






