Revert "Making all files use prettier"

This reverts commit 5aa85986cd.
This commit is contained in:
2023-08-31 23:13:47 +02:00
parent 99167be941
commit 0952d89809
49 changed files with 3777 additions and 4018 deletions

View File

@@ -1,24 +1,34 @@
const { SlashCommandBuilder, PermissionFlagsBits } = require("discord.js");
const getuuid = require("../utils/functions");
const { SlashCommandBuilder, PermissionFlagsBits } = require('discord.js');
const getuuid = require('../utils/functions');
module.exports = {
name: "dev-info",
description: "Test command for the bot.",
type: "slash",
name: 'dev-info',
description: 'Test command for the bot.',
type: 'slash',
data: new SlashCommandBuilder()
.setName("dev-info")
.setDescription("Test command for the bot.")
.addStringOption((option) => option.setName("test").setDescription("Test option."))
.addStringOption((option) => option.setName("test2").setDescription("Test option."))
.addStringOption((option) => option.setName("test3").setDescription("Test option."))
.setName('dev-info')
.setDescription('Test command for the bot.')
.addStringOption(option =>
option
.setName('test')
.setDescription('Test option.'))
.addStringOption(option =>
option
.setName('test2')
.setDescription('Test option.'))
.addStringOption(option =>
option
.setName('test3')
.setDescription('Test option.'))
.setDefaultMemberPermissions(PermissionFlagsBits.Administrator)
.setDMPermission(false),
async execute(interaction) {
const test = interaction.options.getString("test");
const test2 = interaction.options.getString("test2");
const test3 = interaction.options.getString("test3");
const test = interaction.options.getString('test');
const test2 = interaction.options.getString('test2');
const test3 = interaction.options.getString('test3');
const message = await interaction.channel.messages.fetch(test);
const embed = message.embeds[0];
@@ -27,6 +37,6 @@ module.exports = {
console.log(field1.value);
await interaction.reply({ content: "Test command.", ephemeral: true });
},
await interaction.reply({ content: 'Test command.', ephemeral: true });
}
};