// Update the current value for the avatar configuration, and if the
// component is live, then send a message to all clients.
avatarConfigInfo = msg.getAvatarConfigInfo();
if (isLive() == true) {
ChannelComponentMO channel = channelComponentRef.getForUpdate();
AvatarConfigMessage resp = new AvatarConfigMessage(ActionType.APPLY, avatarConfigInfo);
channel.sendAll(clientID, resp);
}
}