From d8bbc3f1e34fa9e444ea5ba08d994cb2c1f84eca Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sun, 20 Nov 2016 19:28:59 -0600 Subject: [PATCH] Corrected the paramater passed to add_field --- cogs/core.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cogs/core.py b/cogs/core.py index 42b383e..02352e7 100644 --- a/cogs/core.py +++ b/cogs/core.py @@ -142,11 +142,11 @@ class Core: count_battles += len(battles) if hm_games: - embed.add_field(text='Total Hangman games running', value=hm_games) + embed.add_field(name='Total Hangman games running', value=hm_games) if ttt_games: - embed.add_field(text='Total TicTacToe games running', value=ttt_games) + embed.add_field(name='Total TicTacToe games running', value=ttt_games) if count_battles: - embed.add_field(text='Total battles games running', value=count_battles) + embed.add_field(name='Total battles games running', value=count_battles) embed.set_footer(text=self.bot.description)