diff options
Diffstat (limited to 'cogs')
-rwxr-xr-x | cogs/src.py | 2 |
1 files changed, 1 insertions, 1 deletions
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( |