aboutsummaryrefslogtreecommitdiff
path: root/cogs
diff options
context:
space:
mode:
authorThomas Voss <57815710+Mango0x45@users.noreply.github.com>2020-08-27 11:47:40 +0000
committerGitHub <noreply@github.com>2020-08-27 11:47:40 +0000
commit10a098ada3c432158ff67d9a0f9faa07f40c860b (patch)
tree6c6ce8b6d2714cf9d864708e2dc4b5fb85bd61de /cogs
parent55a544b760a18a84e5934f4153de179e1a72e0df (diff)
parentbfd239eb255c27275db4c73e66387da70922e1f8 (diff)
downloadsteve-bot-10a098ada3c432158ff67d9a0f9faa07f40c860b.tar
steve-bot-10a098ada3c432158ff67d9a0f9faa07f40c860b.tar.gz
steve-bot-10a098ada3c432158ff67d9a0f9faa07f40c860b.tar.bz2
steve-bot-10a098ada3c432158ff67d9a0f9faa07f40c860b.tar.lz
steve-bot-10a098ada3c432158ff67d9a0f9faa07f40c860b.tar.xz
steve-bot-10a098ada3c432158ff67d9a0f9faa07f40c860b.tar.zst
steve-bot-10a098ada3c432158ff67d9a0f9faa07f40c860b.zip
Merge pull request #24 from Skycloudd/master
fixed capitalisation
Diffstat (limited to 'cogs')
-rwxr-xr-xcogs/src.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogs/src.py b/cogs/src.py
index 10cb824..e3192e7 100755
--- a/cogs/src.py
+++ b/cogs/src.py
@@ -207,7 +207,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}\nTotal runs: {mcbe_runs+mcbeil_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"])