This commit is contained in:
Sarimoko 2022-02-14 17:48:34 -08:00
parent f5ecb6d045
commit 526e4f6f71
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ client.on('message', (channel, tags, message, self) => {
client.say(channel, `/me @{tags.username} you forgot to tell me what color to change to... You can enter hex (#000000) or choose fon the preset color names: Blue, BlueViolet, CadetBlue, Chocolate, Coral, DodgerBlue, Firebrick, GoldenRod, Green, HotPink, OrangeRed, Red, SeaGreen, SpringGreen, YellowGreen`) client.say(channel, `/me @{tags.username} you forgot to tell me what color to change to... You can enter hex (#000000) or choose fon the preset color names: Blue, BlueViolet, CadetBlue, Chocolate, Coral, DodgerBlue, Firebrick, GoldenRod, Green, HotPink, OrangeRed, Red, SeaGreen, SpringGreen, YellowGreen`)
} }
// TO-DO: Build error checker // TO-DO: Build error checker
if (message === `!color #`******){ if (message === `!color #`+******){
client.say(channel, `/color ${args.join(' ')}`); client.say(channel, `/color ${args.join(' ')}`);
client.say(channel, `/me @${tags.username} has changed my color to ${args.join(' ')}... Welp, alright!`); client.say(channel, `/me @${tags.username} has changed my color to ${args.join(' ')}... Welp, alright!`);
} }