# File lib/rbot/message.rb, line 408
    def reply(string, options={})
      if @bot.config['core.reply_with_nick'] and not string =~ /(?:^|\W)#{Regexp.escape(@source.to_s)}(?:$|\W)/
        return nickreply(string, options)
      end
      plainreply(string, options)
    end