Ejemplo n.º 1
0
 /**
  * Sends this factoid to the channel
  *
  * @param sender The nick of the sender
  */
 private void send(String sender) {
   if (isMessage()) {
     bot.msg(getChannel(), getReply().replace("$sender", sender), true);
   } else {
     // TODO - action evades spam, and all the local sendMessage routines
     bot.sendAction(getChannel(), getReply().replace("$sender", sender));
   }
 }