6 lines
148 B
JavaScript
6 lines
148 B
JavaScript
module.exports = client => {
|
|
client._cmd.set("PART", function (msg) { // part
|
|
//delete this.server.user[msg.params[0]];
|
|
}.bind(client));
|
|
};
|