mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-18 05:49:49 +02:00
Fix
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const { list } = require('../../util/Util');
|
||||
const types = ['user', 'guild'];
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
module.exports = class CommandLastRunExportCommand extends Command {
|
||||
constructor(client) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
module.exports = class CommandLeaderboardExportCommand extends Command {
|
||||
constructor(client) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const request = require('node-superfetch');
|
||||
const semver = require('semver');
|
||||
const { stripIndents } = require('common-tags');
|
||||
|
||||
@@ -3,7 +3,7 @@ const util = require('util');
|
||||
const discord = require('discord.js');
|
||||
const tags = require('common-tags');
|
||||
const { escapeRegex } = require('../../util/Util');
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
const nl = '!!NL!!';
|
||||
const nlPattern = new RegExp(nl, 'g');
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const { exec } = require('child_process');
|
||||
const { promisify } = require('util');
|
||||
const execAsync = promisify(exec);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
module.exports = class ForcePatronCommand extends Command {
|
||||
constructor(client) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
module.exports = class GenerateCommandsCommand extends Command {
|
||||
constructor(client) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const request = require('node-superfetch');
|
||||
|
||||
module.exports = class IpCommand extends Command {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
module.exports = class ReloadCommand extends Command {
|
||||
constructor(client) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const { MessageEmbed } = require('discord.js');
|
||||
const { list } = require('../../util/Util');
|
||||
const types = ['reject', 'info', 'approve'];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const modes = ['add', 'subtract', 'exact'];
|
||||
const modeDesc = {
|
||||
add: 'Added',
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const { verify, list } = require('../../util/Util');
|
||||
const texts = require('../../assets/json/shutdown');
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const { list, removeFromArray } = require('../../util/Util');
|
||||
const types = ['user', 'guild'];
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
const { removeFromArray } = require('../../util/Util');
|
||||
|
||||
module.exports = class UnforcePatronCommand extends Command {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const Command = require('../../structures/Command');
|
||||
const Command = require('../../framework/Command');
|
||||
|
||||
module.exports = class WebhookCommand extends Command {
|
||||
constructor(client) {
|
||||
|
||||
Reference in New Issue
Block a user