1
0
Fork 0
mirror of synced 2024-06-28 11:10:27 +12:00

Corrected the paramater passed to add_field

This commit is contained in:
Phxntxm 2016-11-20 19:28:59 -06:00
parent 8d57ce6c03
commit d8bbc3f1e3

View file

@ -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)