Convert spaces to tabs

This commit is contained in:
SileNce5k 2021-04-21 18:36:52 +02:00
parent 4576eec78a
commit db04c07c60
No known key found for this signature in database
GPG key ID: C507260E7F2583AD
17 changed files with 327 additions and 327 deletions

View file

@ -3,45 +3,45 @@ const Discord = require('discord.js');
module.exports = {
name: 'help',
description: 'List all available commands.',
execute({ message, args, prefix }) {
var commands = " "
let commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
let x = 0
if (args[0] == "netload") {
commandFiles = fs.readdirSync('./netload').filter(file => file.endsWith('.js'));
if (commandFiles.length == 0) {
message.channel.send("There are no netmodules currently loaded.")
x = 1;
}
}
if (x == 1) return;
name: 'help',
description: 'List all available commands.',
execute({ message, args, prefix }) {
var commands = " "
let commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
let x = 0
if (args[0] == "netload") {
commandFiles = fs.readdirSync('./netload').filter(file => file.endsWith('.js'));
if (commandFiles.length == 0) {
message.channel.send("There are no netmodules currently loaded.")
x = 1;
}
}
if (x == 1) return;
const embed = new Discord.MessageEmbed()
.setColor(15780145)
.setTitle("Commands")
.setTimestamp()
.setAuthor("soilens bot", "https://cdn.discordapp.com/avatars/481128222147477506/1a30f57f8e403f54aaca502012aeff14.png?size=2048")
const embed = new Discord.MessageEmbed()
.setColor(15780145)
.setTitle("Commands")
.setTimestamp()
.setAuthor("soilens bot", "https://cdn.discordapp.com/avatars/481128222147477506/1a30f57f8e403f54aaca502012aeff14.png?size=2048")
for (const file of commandFiles) {
const command = require(`./${file}`);
for (const file of commandFiles) {
const command = require(`./${file}`);
if (args[0] == "admin") {
if (command.admin && !command.disabled)
commands = commands + `${prefix}${command.name} | ${command.description}\n`
} else
if (!command.admin && !command.disabled)
commands = commands + `${prefix}${command.name} | ${command.description}\n`
}
embed.addFields(
{ name: "General", value: commands },
)
if (args[0] == "admin") {
if (command.admin && !command.disabled)
commands = commands + `${prefix}${command.name} | ${command.description}\n`
} else
if (!command.admin && !command.disabled)
commands = commands + `${prefix}${command.name} | ${command.description}\n`
}
embed.addFields(
{ name: "General", value: commands },
)
message.channel.send(embed);
},
message.channel.send(embed);
},
};