diff options
Diffstat (limited to 'src/bot.ts')
| -rw-r--r-- | src/bot.ts | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -190,7 +190,10 @@ client.on('message', async msg => { // If a message is in Kat's Korner and it mentions the word water, react with LizardsWater emoji. if (msg.guild?.id == '663964105983393793') - if (msg.content.toLowerCase().includes("water")) msg.react('731022085530583100') + if (msg.content.toLowerCase().includes("water")) { + msg.react('731022085530583100') + msg.react('732062891162992720') + } }); // Register client |