*Remove viewpoint when dynamicobject is removed from world.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-03-26 10:53:19 -06:00
parent 56cf3da6cb
commit bdafaf4113
2 changed files with 13 additions and 12 deletions

View File

@@ -53,6 +53,18 @@ void DynamicObject::RemoveFromWorld()
///- Remove the dynamicObject from the accessor
if(IsInWorld())
{
if(m_effIndex == 4)
{
if(Unit *caster = GetCaster())
{
if(caster->GetTypeId() == TYPEID_PLAYER)
((Player*)caster)->SetViewpoint(this, false);
}
else
{
sLog.outCrash("DynamicObject::RemoveFromWorld cannot find viewpoint owner");
}
}
ObjectAccessor::Instance().RemoveObject(this);
WorldObject::RemoveFromWorld();
}
@@ -134,6 +146,7 @@ void DynamicObject::Update(uint32 p_time)
void DynamicObject::Delete()
{
SendObjectDeSpawnAnim(GetGUID());
RemoveFromWorld();
AddObjectToRemoveList();
}