From f52a7cc5cf69ca2969c0b1b4348c4709b9e95a09 Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani <46041660+null2264@users.noreply.github.com> Date: Thu, 7 Jan 2021 08:36:41 +0700 Subject: + Change list to tuple You change every list into tuple but not the if statement thingy. Kappa --- cogs/src.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/src.py b/cogs/src.py index 2cdae65..67d5cca 100755 --- a/cogs/src.py +++ b/cogs/src.py @@ -213,7 +213,7 @@ async def pendingRuns(self, ctx): mcbece_runs += 1 # In the case of coop, change the player names from a list to a string for prettier output - if type(run.players) == list: + if type(run.players) == tuple: run.players = ", ".join(map(str, run.players)) embed = discord.Embed( -- cgit v1.2.3