6 lines
120 B
JavaScript
6 lines
120 B
JavaScript
export default (bot) => {
|
|
bot._cmd.set("PART", (msg) => {
|
|
delete bot.server.user[msg.params[0]];
|
|
});
|
|
};
|