yet another dumb mistake

This commit is contained in:
2022-02-11 13:44:00 -06:00
parent 00c3fa8219
commit 4fdb233bd6
2 changed files with 4 additions and 4 deletions

View File

@@ -91,7 +91,7 @@ SaveQueue();
export async function discordInit(client: Client) {
for (let channelId in QUEUE.keys()) {
for (let channelId of QUEUE.keys()) {
let info = QUEUE.get(channelId),
channel = await client.channels.fetch(channelId);
@@ -107,7 +107,7 @@ export async function discordInit(client: Client) {
continue;
}
channel.send('The bot has just restarted and anybody in the queues have been reset')
channel.send('The bot has just restarted, anybody previously in the queue has been reset');
}