aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/fun/tic_tac_toe.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/tic_tac_toe.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/tic_tac_toe.py')
-rw-r--r--bot/exts/fun/tic_tac_toe.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/fun/tic_tac_toe.py b/bot/exts/fun/tic_tac_toe.py
index 946b6f7b..5dd38a81 100644
--- a/bot/exts/fun/tic_tac_toe.py
+++ b/bot/exts/fun/tic_tac_toe.py
@@ -3,7 +3,7 @@ import random
from typing import Callable, Optional, Union
import discord
-from discord.ext.commands import Cog, Context, check, group, guild_only
+from discord.ext.commands import Cog, Context, check, group
from bot.bot import Bot
from bot.constants import Emojis
@@ -253,7 +253,6 @@ class TicTacToe(Cog):
def __init__(self):
self.games: list[Game] = []
- @guild_only()
@is_channel_free()
@is_requester_free()
@group(name="tictactoe", aliases=("ttt", "tic"), invoke_without_command=True)