// now that we've moved, we can update the user object with the new zone id
((ZonedBodyObject)_body).setZoneId(_summary.zoneId);
// check to see if they need a newer version of the scene data
ZoneService.ZoneMoveListener listener = (ZoneService.ZoneMoveListener)_listener;
SceneModel model = scmgr.getScene().getSceneModel();
if (_version != model.version) {
SceneUpdate[] updates = null;
if (_version < model.version) {
updates = scmgr.getUpdates(_version);
}