add channel limiter for settings

This commit is contained in:
SowinskiBraeden committed 2022-08-31 11:25:28 -07:00
1 parent 739f0bfe28
commit 261c2c60a3
2 files changed
+8 -1

No files matched your search

+7
View File
@@ -28,6 +28,7 @@ module.exports = {
description: "The channel to configure", description: "The channel to configure",
value: "channel", value: "channel",
type: 7, type: 7,
channel_types: [0], // Restrict to text channel
required: true, required: true,
}] }]
}, },
@@ -41,6 +42,7 @@ module.exports = {
description: "The channel to configure", description: "The channel to configure",
value: "channel", value: "channel",
type: 7, type: 7,
channel_types: [0], // Restrict to text channel
required: true, required: true,
}] }]
}, },
@@ -62,6 +64,7 @@ module.exports = {
description: "The channel to configure", description: "The channel to configure",
value: "channel", value: "channel",
type: 7, type: 7,
channel_types: [0], // Restrict to text channel
required: true, required: true,
}] }]
}, },
@@ -89,6 +92,7 @@ module.exports = {
description: "The channel to configure", description: "The channel to configure",
value: "channel", value: "channel",
type: 7, type: 7,
channel_types: [0], // Restrict to text channel
required: true, required: true,
}] }]
}, },
@@ -116,6 +120,7 @@ module.exports = {
description: "The channel to configure", description: "The channel to configure",
value: "channel", value: "channel",
type: 7, type: 7,
channel_types: [0], // Restrict to text channel
required: true, required: true,
}] }]
}, },
@@ -143,6 +148,8 @@ module.exports = {
description: "The channel to configure", description: "The channel to configure",
value: "channel", value: "channel",
type: 7, type: 7,
channel_types: [0], // Restrict to text channel,
required: true,
}] }]
}, },
{ {
+1 -1
View File
@@ -1,6 +1,6 @@
module.exports = { module.exports = {
Dev: "PROD.", Dev: "PROD.",
Version: "12.3.1", Version: "12.3.2",
Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot Admins: ["362791661274660874", "329371697570381824"], // Admins of the bot
DefaultPrefix: "?", DefaultPrefix: "?",
ServerID: "955668596745461830", ServerID: "955668596745461830",