mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 23:36:43 +02:00
Fix all of these
This commit is contained in:
@@ -3,7 +3,7 @@ const { MessageEmbed } = require('discord.js');
|
||||
const filterLevels = ['Off', 'No Role', 'Everyone'];
|
||||
const verificationLevels = ['None', 'Low', 'Medium', '(╯°□°)╯︵ ┻━┻', '┻━┻ ミヽ(ಠ益ಠ)ノ彡┻━┻'];
|
||||
|
||||
module.exports = class GuildInfoCommand extends Command {
|
||||
module.exports = class ServerInfoCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'server-info',
|
||||
|
||||
@@ -2,7 +2,7 @@ const Command = require('../../structures/Command');
|
||||
const { stripIndents } = require('common-tags');
|
||||
const answers = require('../../assets/json/8-ball');
|
||||
|
||||
module.exports = class MagicBallCommand extends Command {
|
||||
module.exports = class EightBallCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: '8-ball',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const sides = ['heads', 'tails'];
|
||||
|
||||
module.exports = class CoinFlipCommand extends Command {
|
||||
module.exports = class CoinCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'coin',
|
||||
|
||||
@@ -3,7 +3,7 @@ const { MessageEmbed } = require('discord.js');
|
||||
const snekfetch = require('snekfetch');
|
||||
const { WORDNIK_KEY } = process.env;
|
||||
|
||||
module.exports = class DefineCommand extends Command {
|
||||
module.exports = class WordOfTheDayCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'word-of-the-day',
|
||||
|
||||
@@ -8,7 +8,7 @@ const gifs = [
|
||||
'https://i.imgur.com/2DdIR5H.gif'
|
||||
];
|
||||
|
||||
module.exports = class HighFivesCommand extends Command {
|
||||
module.exports = class HighFiveCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'high-five',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { stripIndents } = require('common-tags');
|
||||
|
||||
module.exports = class HitwithShovelCommand extends Command {
|
||||
module.exports = class HitWithShovelCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'hit-with-shovel',
|
||||
|
||||
@@ -3,7 +3,7 @@ const { MessageEmbed } = require('discord.js');
|
||||
const snekfetch = require('snekfetch');
|
||||
const { DBOTS_KEY } = process.env;
|
||||
|
||||
module.exports = class BotSearchCommand extends Command {
|
||||
module.exports = class BotInfoCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'bot-info',
|
||||
|
||||
@@ -4,7 +4,7 @@ const snekfetch = require('snekfetch');
|
||||
const { list } = require('../../structures/Util');
|
||||
const countries = ['us', 'jp'];
|
||||
|
||||
module.exports = class iTunesCommand extends Command {
|
||||
module.exports = class ITunesCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'itunes',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const { stripIndent } = require('common-tags');
|
||||
|
||||
module.exports = class CowsayCommand extends Command {
|
||||
module.exports = class CowSayCommand extends Command {
|
||||
constructor(client) {
|
||||
super(client, {
|
||||
name: 'cow-say',
|
||||
|
||||
Reference in New Issue
Block a user