attachOrb(msg.getHostCellID(), msg.isAttached());
return;
}
if (message instanceof OrbAttachVirtualPlayerMessage) {
OrbAttachVirtualPlayerMessage msg = (OrbAttachVirtualPlayerMessage) message;
PresenceInfo info = pm.getPresenceInfo(msg.getHostCallID());
if (info == null) {
logger.warning("OrbAttachVirtualPlayerMessage, no presence info for callID "
+ msg.getHostCallID());
return;
}
attachOrb(info.getCellID(), true);
return;