cuffeo/dist/clients/irc/pwdreq.js
2025-03-18 09:55:57 +01:00

7 lines
192 B
JavaScript

export default (bot) => {
bot._cmd.set("464", (msg) => {
if (bot.options.password.length > 0 && !bot.options.sasl)
bot.send(`PASS ${bot.options.password}`);
});
};