diff options
author | 2022-01-01 23:46:09 +0000 | |
---|---|---|
committer | 2022-01-01 23:46:09 +0000 | |
commit | 0c7443d2ce8b44706d98837830586feaa6016985 (patch) | |
tree | ee77a61d57b4d46f0e3ebdfadab760896986db2d /bot/exts/fun/connect_four.py | |
parent | Merge pull request #997 from Sn4u/fix-995 (diff) | |
parent | Merge branch 'main' into dm-check (diff) |
Merge pull request #953 from python-discord/dm-check
Add Better Support For Whitelisting DM Commands
Diffstat (limited to 'bot/exts/fun/connect_four.py')
-rw-r--r-- | bot/exts/fun/connect_four.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bot/exts/fun/connect_four.py b/bot/exts/fun/connect_four.py index 647bb2b7..f53695d5 100644 --- a/bot/exts/fun/connect_four.py +++ b/bot/exts/fun/connect_four.py @@ -6,7 +6,6 @@ from typing import Optional, Union import discord import emojis from discord.ext import commands -from discord.ext.commands import guild_only from bot.bot import Bot from bot.constants import Emojis @@ -361,7 +360,6 @@ class ConnectFour(commands.Cog): self.games.remove(game) raise - @guild_only() @commands.group( invoke_without_command=True, aliases=("4inarow", "connect4", "connectfour", "c4"), @@ -426,7 +424,6 @@ class ConnectFour(commands.Cog): await self._play_game(ctx, user, board_size, str(emoji1), str(emoji2)) - @guild_only() @connect_four.command(aliases=("bot", "computer", "cpu")) async def ai( self, |