*quickly changed some grammar*

This commit is contained in:
byron 2024-03-13 13:57:14 -04:00 committed by GitHub
parent 6df510d9f5
commit 9b600b9dad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,7 +27,7 @@ export default definePlugin({
options: [ options: [
{ {
name: "url", name: "url",
description: "The URL of the webhook.", description: "The URL of the webhook",
type: ApplicationCommandOptionType.STRING, type: ApplicationCommandOptionType.STRING,
required: true required: true
} }
@ -62,7 +62,7 @@ export default definePlugin({
options: [ options: [
{ {
name: "url", name: "url",
description: "The URL of the webhook.", description: "The URL of the webhook",
type: ApplicationCommandOptionType.STRING, type: ApplicationCommandOptionType.STRING,
required: true required: true
} }
@ -100,19 +100,19 @@ export default definePlugin({
options: [ options: [
{ {
name: "url", name: "url",
description: "The URL of the webhook.", description: "The URL of the webhook",
type: ApplicationCommandOptionType.STRING, type: ApplicationCommandOptionType.STRING,
required: true required: true
}, },
{ {
name: "message", name: "message",
description: "The message you want to send.", description: "The message you want to send",
type: ApplicationCommandOptionType.STRING, type: ApplicationCommandOptionType.STRING,
required: true required: true
}, },
{ {
name: "username", name: "username",
description: "Give the webhook a custom name (Leave blank for default).", description: "Send with a custom webhook username",
type: ApplicationCommandOptionType.STRING, type: ApplicationCommandOptionType.STRING,
required: false required: false
}, },
@ -124,7 +124,7 @@ export default definePlugin({
}, },
{ {
name: "tts", name: "tts",
description: "Send with TTS?", description: "Send with TTS",
type: ApplicationCommandOptionType.BOOLEAN, type: ApplicationCommandOptionType.BOOLEAN,
required: false required: false
} }