From 16bd41139760d780c9d75b2f78f2f9d9000c8bae Mon Sep 17 00:00:00 2001 From: Derek Sims Date: Wed, 18 Mar 2020 09:15:04 -0500 Subject: [PATCH] Fixed the bug --- src/SrBot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SrBot.ts b/src/SrBot.ts index cd24ed3..063be98 100644 --- a/src/SrBot.ts +++ b/src/SrBot.ts @@ -208,7 +208,7 @@ export class SrBot { if (isValidUsername(username)){ const serverId = message.member.guild.id; this.statsGenerator.removePlayer(serverId, username); - this.sendToChannel(message.channel, `Removed ${username} to your roster`); + this.sendToChannel(message.channel, `Removed ${username} from your roster`); } else { this.sendToChannel(message.channel, `Invalid username: ${username}`); }