aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun/connect_four.py
diff options
context:
space:
mode:
authorGravatar Izan <[email protected]>2022-01-01 23:50:06 +0000
committerGravatar Izan <[email protected]>2022-01-01 23:50:06 +0000
commite69f65c0f11f52ab830a623d0a245903d2062b34 (patch)
treeee77a61d57b4d46f0e3ebdfadab760896986db2d /bot/exts/fun/connect_four.py
parentMerge remote-tracking branch 'origin/main' into main (diff)
parentMerge pull request #953 from python-discord/dm-check (diff)
Merge remote-tracking branch 'origin/main' into main
Diffstat (limited to 'bot/exts/fun/connect_four.py')
-rw-r--r--bot/exts/fun/connect_four.py3
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,