private void _processPostSession(WorldObject wo)
        {
            if (WorldObjectService.GetSelf().Id != _loginSessionManager.Session.Id)
            {
                _loginSessionManager.Clear();
                _processPreSession(wo);
                return;
            }

            if (WorldObjectService.IsPlayer(wo.Id))
            {
                _processPlayerObject(wo);
            }
        }