aboutsummaryrefslogtreecommitdiffstats
path: root/bot/bot.py (unfollow)
Commit message (Collapse)AuthorLines
2020-04-07(TicTacToe): Moved checks to outside of class, created initial tic tac toe ↵Gravatar ks129-16/+30
command.
2020-04-07(TicTacToe): Created new class variable `over` to `Game`, added over check ↵Gravatar ks129-2/+7
to cog checks.
2020-04-07(TicTacToe): Created check `is_requester_free`.Gravatar ks129-0/+7
2020-04-07(TicTacToe): Created check `is_channel_free`.Gravatar ks129-1/+8
2020-04-07(TicTacToe): Added new variable `games` to `TicTacToe` cog.Gravatar ks129-0/+1
2020-04-07(TicTacToe): Created helper function `add_reactions` to `Game` class to add ↵Gravatar ks129-0/+5
all number reactions to message.
2020-04-07(TicTacToe): Added `get_confirmation` function to `Game` class to make sure ↵Gravatar ks129-0/+41
that opponent want to play.
2020-04-07(Constants, TicTacToe): Added X and O emojis.Gravatar ks129-0/+2
2020-04-07(Constants, TicTacToe): Added confirmation and declining emojis.Gravatar ks129-0/+2
2020-04-07(Constants, TicTacToe): Added number emojis that will be shown in board and ↵Gravatar ks129-0/+13
in reactions.
2020-04-07(TicTacToe): Added new player-about variables to `Game` class.Gravatar ks129-0/+6
2020-04-07(TicTacToe): Replaced `discord.User` with `Player` in `Game` class signature.Gravatar ks129-1/+1
2020-04-07(TicTacToe): Added `ctx` variable to `Player` class.Gravatar ks129-1/+2
2020-04-07(TicTacToe): Created `Game` classGravatar ks129-1/+12
2020-04-07(TicTacToe): Created `Player` classGravatar ks129-0/+8