CoralMUD-0.15/
CoralMUD-0.15/core/
CoralMUD-0.15/data/
CoralMUD-0.15/data/areas/
CoralMUD-0.15/data/help/
CoralMUD-0.15/data/players/
CoralMUD-0.15/lib/automap/
CoralMUD-0.15/lib/items/
class Player
  ### If no argument display all available channels.
  def cmd_ichannels command_table_entry, arg
    buf = "The following commands are available:" + ENDL
    i = 0
    $imc_channel_list.each_pair do |k,v|
      i += 1
      z = "[On]"
      buf << v[1] + ("[" + i.to_s + "] " + v[0]).ljust(25) + k.to_s.ljust(12) + z + ENDL
    end
    text_to_player buf
  end
end