Fix lobbies not showing up
This commit is contained in:
parent
f6a85314dc
commit
bd15d58195
1 changed files with 4 additions and 4 deletions
|
@ -21,27 +21,27 @@ export default class ListLobby extends Command {
|
|||
|
||||
const channels: eLobby[] = [];
|
||||
|
||||
interaction.guild.channels.cache.forEach(async (channel) => {
|
||||
for (let channel of interaction.guild.channels.cache.map(x => x)) {
|
||||
const lobby = await eLobby.FetchOneByChannelId(channel.id);
|
||||
|
||||
if (lobby) {
|
||||
channels.push(lobby);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const embed = new EmbedBuilder()
|
||||
.setColor(EmbedColours.Ok)
|
||||
.setTitle("Lobbies")
|
||||
.setDescription(`Channels: ${channels.length}`);
|
||||
|
||||
channels.forEach(lobby => {
|
||||
for (let lobby of channels) {
|
||||
embed.addFields([
|
||||
{
|
||||
name: `<#${lobby.ChannelId}>`,
|
||||
value: `Last Used: ${lobby.LastUsed}`
|
||||
}
|
||||
]);
|
||||
});
|
||||
}
|
||||
|
||||
await interaction.reply({ embeds: [ embed ]});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue