2025-03-18 09:55:57 +01:00

6 lines
115 B
JavaScript

export default (bot) => {
bot._cmd.set("JOIN", (msg) => {
bot.send(`WHO ${msg.params[0]}`);
});
};