diff --git a/the_prestige.py b/the_prestige.py index 17da3af..006ddf6 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -103,7 +103,8 @@ 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): - player_name = json.loads(ono.get_stats(command.split(" ",1)[1])) + print(ono.get_stats) + #player_name = json.loads(ono.get_stats(command.split(" ",1)[1])) await msg.channel.send(embed=build_star_embed(player_name)) class StartGameCommand(Command):