From 08c393d2c75d6883358e1e3c5b8d0edbdf1432e4 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 9 Jan 2021 13:39:20 -0500 Subject: [PATCH] Fix --- README.md | 4 ++-- commands/games-mp/connect-four.js | 2 +- commands/games-mp/tic-tac-toe.js | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 592d7590..7f5e5241 100644 --- a/README.md +++ b/README.md @@ -601,7 +601,7 @@ Total: 575 * **balloon-pop:** Don't let yourself be the last one to pump the balloon before it pops! * **battle:** Engage in a turn-based battle against another user or the AI. * **bingo:** Play bingo with up to 99 other users. -* **connect-four:** Play a game of Connect Four with another user. +* **connect-four:** Play a game of Connect Four with another user or the AI. * **dots-and-boxes:** Play a game of Dots and Boxes with another user. * **emoji-emoji-revolution:** Can you type arrow emoji faster than anyone else has ever typed them before? * **guesspionage:** Tests your knowledge of humans as you guess how people responded to poll questions. @@ -614,7 +614,7 @@ Total: 575 * **quiz-duel:** Answer a series of quiz questions against other opponents. * **russian-roulette:** Who will pull the trigger and die first? * **spam-war:** See who can type more characters the fastest. -* **tic-tac-toe:** Play a game of tic-tac-toe with another user. +* **tic-tac-toe:** Play a game of tic-tac-toe with another user or the AI. * **typing-race:** Race a user to see who can type a sentence faster. * **word-chain:** Try to come up with words that start with the last letter of your opponent's word. * **word-spud:** Hot potato, but with words. diff --git a/commands/games-mp/connect-four.js b/commands/games-mp/connect-four.js index 3831ed96..46c7c20c 100644 --- a/commands/games-mp/connect-four.js +++ b/commands/games-mp/connect-four.js @@ -15,7 +15,7 @@ module.exports = class ConnectFourCommand extends Command { aliases: ['connect-4', 'c4'], group: 'games-mp', memberName: 'connect-four', - description: 'Play a game of Connect Four with another user.', + description: 'Play a game of Connect Four with another user or the AI.', credit: [ { name: 'Hasbro', diff --git a/commands/games-mp/tic-tac-toe.js b/commands/games-mp/tic-tac-toe.js index 8c58eee2..77b21384 100644 --- a/commands/games-mp/tic-tac-toe.js +++ b/commands/games-mp/tic-tac-toe.js @@ -9,8 +9,7 @@ module.exports = class TicTacToeCommand extends Command { name: 'tic-tac-toe', group: 'games-mp', memberName: 'tic-tac-toe', - description: 'Play a game of tic-tac-toe with another user.', - guildOnly: true, + description: 'Play a game of tic-tac-toe with another user or the AI.', args: [ { key: 'opponent',