diff options
author | Skycloudd <51929172+Skycloudd@users.noreply.github.com> | 2020-08-23 09:55:49 +0000 |
---|---|---|
committer | Skycloudd <51929172+Skycloudd@users.noreply.github.com> | 2020-08-23 09:55:49 +0000 |
commit | e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1 (patch) | |
tree | c06d9d6bdf36d324e96e977202cf8dd3a4abd0ed /cogs/src.py | |
parent | 2a4b88888888b9155f20e28c1b19230b80981d0d (diff) | |
download | steve-bot-e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1.tar steve-bot-e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1.tar.gz steve-bot-e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1.tar.bz2 steve-bot-e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1.tar.lz steve-bot-e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1.tar.xz steve-bot-e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1.tar.zst steve-bot-e7cc8777a9278c7bdd4ef3eb54b22b9372498bd1.zip |
added total runs statistic to pending runs
Diffstat (limited to 'cogs/src.py')
-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 7a8fd9e..a0c5f9e 100755 --- a/cogs/src.py +++ b/cogs/src.py @@ -206,7 +206,7 @@ async def pendingRuns(self, ctx): embed_stats = discord.Embed( title='Pending Run Stats', description= - f"Full Game Runs: {mcbe_runs}\nIndividual Level Runs: {mcbeil_runs}\nCategory Extension Runs: {mcbece_runs}", + f"Full Game Runs: {mcbe_runs}\nIndividual Level Runs: {mcbeil_runs}\nCategory Extension Runs: {mcbece_runs}\nTotal runs: {mcbe_runs+mcbeil_runs+mcbece_runs}", color=0x000000) await self.bot.get_channel( int(self.bot.config[str(ctx.message.guild.id)]["pending_channel"]) |