*Update to Mangos 7125.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-01-20 19:59:43 -06:00
parent 1bbd896861
commit 68c0bcd069
51 changed files with 1058 additions and 725 deletions

View File

@@ -276,22 +276,6 @@ ObjectAccessor::UpdateObject(Object* obj, Player* exceptPlayer)
}
}
void
ObjectAccessor::AddUpdateObject(Object *obj)
{
Guard guard(i_updateGuard);
i_objects.insert(obj);
}
void
ObjectAccessor::RemoveUpdateObject(Object *obj)
{
Guard guard(i_updateGuard);
std::set<Object *>::iterator iter = i_objects.find(obj);
if( iter != i_objects.end() )
i_objects.erase( iter );
}
void
ObjectAccessor::_buildUpdateObject(Object *obj, UpdateDataMapType &update_players)
{