tic-tac-toe aliases

This commit is contained in:
Dragon Fire
2021-01-10 10:57:59 -05:00
parent c4a877d925
commit 03950ac600
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -8,14 +8,16 @@ module.exports = class TicTacToeCommand extends Command {
constructor(client) {
super(client, {
name: 'tic-tac-toe',
aliases: ['ttt', 'tic-tac'],
group: 'games-mp',
memberName: 'tic-tac-toe',
description: 'Play a game of tic-tac-toe with another user or the AI.',
args: [
{
key: 'opponent',
prompt: 'What user would you like to challenge? To play against AI, choose me.',
type: 'user'
prompt: 'What user would you like to challenge?',
type: 'user',
default: () => this.client.user
}
]
});
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "124.5.5",
"version": "124.5.6",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {