From 94b5f0e15fc95b881e2d55e69cd6411350f2e3a6 Mon Sep 17 00:00:00 2001 From: brandons209 Date: Sun, 9 Feb 2020 18:37:34 -0500 Subject: [PATCH] strip and split it good --- roleplay/roleplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roleplay/roleplay.py b/roleplay/roleplay.py index 988e02e..75b2c8a 100644 --- a/roleplay/roleplay.py +++ b/roleplay/roleplay.py @@ -75,7 +75,7 @@ class RolePlay(commands.Cog): # has intensity if not user: try: - args = target.split(" ") + args = target.split() intensity = int(args[-1]) name = " ".join(args[:-1]) user = guild.get_member_named(name)