add fart command for art

This commit is contained in:
hgw 2023-10-02 02:14:37 +00:00
parent d4d8df5b68
commit ca87ac474a
1 changed files with 3 additions and 1 deletions

4
bot.js
View File

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