From cdf15ce46b691d221431340008a01f5c4387dfa0 Mon Sep 17 00:00:00 2001 From: Kevin Rode Date: Thu, 7 Jan 2021 20:40:25 -0500 Subject: [PATCH] Removed debugs for #10 --- the_prestige.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/the_prestige.py b/the_prestige.py index 006ddf6..17da3af 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -103,8 +103,7 @@ class ShowPlayerCommand(Command): description = "Displays any name's stars in a nice discord embed, there's a limit of 70 characters. That should be *plenty*. Note: if you want to lookup a lot of different players you can do it on onomancer here instead of spamming this command a bunch and clogging up discord: " async def execute(self, msg, command): - print(ono.get_stats) - #player_name = json.loads(ono.get_stats(command.split(" ",1)[1])) + player_name = json.loads(ono.get_stats(command.split(" ",1)[1])) await msg.channel.send(embed=build_star_embed(player_name)) class StartGameCommand(Command):