Process of format fixing

This commit is contained in:
2024-01-19 21:36:01 +01:00
parent ee217d5f64
commit 3eed20e788
77 changed files with 1079 additions and 1086 deletions

View File

@@ -23,8 +23,8 @@ export = {
option
.setName("ign")
.setDescription("The IGN of the player.")
.setRequired(true),
),
.setRequired(true)
)
)
.addSubcommand(subcommand =>
subcommand
@@ -34,9 +34,9 @@ export = {
option
.setName("query")
.setDescription(
"The query to search for. [Default: player]",
"The query to search for. [Default: player]"
)
.setRequired(true),
.setRequired(true)
)
.addStringOption(option =>
option
@@ -45,9 +45,9 @@ export = {
.addChoices(
{ name: "Guild Member", value: "ign" },
{ name: "Guild Name", value: "name" },
{ name: "Guild Id", value: "id" },
),
),
{ name: "Guild Id", value: "id" }
)
)
)
.addSubcommand(subcommand =>
subcommand
@@ -57,9 +57,9 @@ export = {
option
.setName("query")
.setDescription(
"The query to search for. [Default: player]",
"The query to search for. [Default: player]"
)
.setRequired(true),
.setRequired(true)
)
.addStringOption(option =>
option
@@ -68,16 +68,16 @@ export = {
.addChoices(
{ name: "Guild Member", value: "ign" },
{ name: "Guild Name", value: "name" },
{ name: "Guild Id", value: "id" },
),
{ name: "Guild Id", value: "id" }
)
)
.addNumberOption(option =>
option
.setName("amount")
.setDescription(
"The amount of guild members to show. [Default: 10]",
),
),
"The amount of guild members to show. [Default: 10]"
)
)
)
.setDMPermission(false),
@@ -107,10 +107,10 @@ export = {
color: embedColor,
footer: {
text: interaction.guild!.name + " | " + devMessage,
icon_url: interaction.guild!.iconURL() || undefined,
},
},
],
icon_url: interaction.guild!.iconURL() || undefined
}
}
]
})
},
}
} as Command