From 67013189b8d714f364f9a80d9af0311cc63849d2 Mon Sep 17 00:00:00 2001 From: brandons209 Date: Sun, 9 Feb 2020 18:33:03 -0500 Subject: [PATCH] need to strip bad whitespace in target --- roleplay/roleplay.py | 1 + 1 file changed, 1 insertion(+) diff --git a/roleplay/roleplay.py b/roleplay/roleplay.py index a5dbc47..988e02e 100644 --- a/roleplay/roleplay.py +++ b/roleplay/roleplay.py @@ -62,6 +62,7 @@ class RolePlay(commands.Cog): bot.remove_command("flip") def get_user_and_intensity(self, guild: discord.Guild, target: str): + target = target.strip() user = None intensity = 1 if "<@!" == target[:3] and ">" == target[-1]: