add fart command for art

This commit is contained in:
hgw 2023-10-02 02:14:37 +00:00
parent d4d8df5b68
commit ca87ac474a

4
bot.js
View File

@ -10,7 +10,7 @@ var config = { //edit your shit here
server: "irc.supernets.org", server: "irc.supernets.org",
port: 6697, port: 6697,
SSL: true, SSL: true,
channels: ['#dev', '#superbowl'], channels: ['#dev', '#superbowl', '#scroll', '#fascinus'],
botName: "fascinus", botName: "fascinus",
userName: "fascinus", userName: "fascinus",
realName: "Sneed" realName: "Sneed"
@ -195,6 +195,8 @@ bot.addListener('message', function(nick, to, text, from) {
uspam(to, args[1]); uspam(to, args[1]);
} else if (args[0] === '$art') { } else if (args[0] === '$art') {
art(to, args[1]); art(to, args[1]);
} else if (args[0] === 'fart') {
art(to, args[1]);
} else if (args[0] === '$godwords') { } else if (args[0] === '$godwords') {
godwords(to, args[1]); godwords(to, args[1]);
} }