Initial commit

This commit is contained in:
Flummi
2018-09-02 12:07:40 +02:00
commit 47ccf527ee
30 changed files with 1768 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export default client => {
client._cmd.set("464", function (msg) { // motd_entry
if (this.options.password.length > 0 && !this.options.sasl)
this.send(`PASS ${this.options.password}`);
}.bind(client));
};