We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15c6968 commit 09d23a0Copy full SHA for 09d23a0
1 file changed
app/services/discord/modules/commands/developer/Gserv.ts
@@ -61,7 +61,8 @@ export const SlashGservCommand: SlashCommand = {
61
const messageID = reply.interaction.responseMessageId ?? (await ctx.fetchReply()).id;
62
63
await Promise.all(
64
- servers.map(async gameServer => {
+ servers.filter(s => !!s.config.ssh)
65
+ .map(async gameServer => {
66
const gSDiscord = gameServer.discord;
67
const channel = gSDiscord.channels.cache.get(
68
ctx.channelId
0 commit comments