From 26ddaf7e5ab121f9c9ac52f6654a08824894dfc2 Mon Sep 17 00:00:00 2001 From: Sakimori Date: Fri, 15 Jan 2021 06:00:51 -0500 Subject: [PATCH] adjusted some text in discord --- the_prestige.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/the_prestige.py b/the_prestige.py index e6560d9..5c2adf4 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -1317,7 +1317,7 @@ async def tourney_round_watcher(channel, tourney, games_list, filter_url, finals next_start = (now + delta).replace(second=0, microsecond=0) wait_seconds = (next_start - now).seconds - await channel.send(f"The next batch of games for {tourney.name} will start in {math.ceil(wait_seconds/60)} minutes.") + await channel.send(f"The next batch of games for the {tourney.name} will start in {math.ceil(wait_seconds/60)} minutes.") await asyncio.sleep(wait_seconds) else: await channel.send(f"The next batch of games for {tourney.name} will start in {int(tourney.delay/60)} minutes.") @@ -1360,7 +1360,7 @@ async def tourney_round_watcher(channel, tourney, games_list, filter_url, finals next_start = (now + delta).replace(second=0, microsecond=0) wait_seconds = (next_start - now).seconds - await channel.send(f"""This round of games for {tourney.name} is now complete! The next round will start in {math.ceil(wait_seconds/60)} minutes. + await channel.send(f"""This round of games for the {tourney.name} is now complete! The next round will start in {math.ceil(wait_seconds/60)} minutes. Advancing teams: {winners_string}""") await asyncio.sleep(wait_seconds)