diff options
Diffstat (limited to 'src/bot.ts')
| -rw-r--r-- | src/bot.ts | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -125,7 +125,7 @@ client.on('guildMemberRemove', member => { }) client.on('message', async msg => { - var msgContent = msg.content.toLowerCase(); + const msgContent = msg.content.toLowerCase(); function prefixCheck() { if (msgContent.startsWith('uwu!')) { return true; |