* Live radio re-streaming to voice channels (using multiple bot users), automatically turned on/off when someone joins/leaves the bound channel.
* Other cool things.
## Modules
A module is a class in the `modules` folder. It accepts the following methods:
*`constructor(config, client, bot)` where `config` is the object directly from the config file, `client` is the Discord client, and `bot` is the `RedditRadio` object.
*`onCmdXxxx(msg, ...)` where `Xxxx` is a command name like `.xxxx`.
*`onTick()` is called every second.
*`onMessage(msg)` is called whenever a message is sent in any channel. Return `false` if the message can pass through to other commands and handlers, or `true` to stop that from happening.