@Override
 public void buddyChat(int[] recipientCharacterIds, int cidFrom, String nameFrom, String chattext)
     throws RemoteException {
   for (ChannelWorldInterface cwi : WorldRegistryImpl.getInstance().getAllChannelServers()) {
     cwi.buddyChat(recipientCharacterIds, cidFrom, nameFrom, chattext);
   }
 }