diff options
Diffstat (limited to 'src/bot.ts')
| -rw-r--r-- | src/bot.ts | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -196,15 +196,8 @@ client.on('message', async msg => { } if (msg.guild?.id == '663964105983393793') { - let variations = [ - "ugycat", - "ugy", - "ugly", - "uglycat", - "uglycatdrool", - "ugycatdrool" - ] - if (variations.includes(msg.content.toLowerCase())) msg.react('733301856054280253') + if (msg.content.toLowerCase().includes('ugy') || msg.content.toLowerCase().includes('ugly')) + msg.react('733301856054280253') } }); |