# File lib/autumn/ctcp.rb, line 223
    def make_ctcp_message(command, *arguments)
      arguments = arguments.map { |arg| quote arg } if ENCODED_COMMANDS.include? command
      "\01#{arguments.unshift(command).join(' ')}\01"
    end