9 lines
260 B
JavaScript
9 lines
260 B
JavaScript
export default (bot) => {
|
|
bot._cmd.set("NICK", (msg) => {
|
|
const prefix = bot.parsePrefix(msg.prefix);
|
|
if (bot.server.user.has(prefix.nick))
|
|
bot.server.user.delete(prefix.nick);
|
|
bot.whois(msg.params[0], true);
|
|
});
|
|
};
|