Update nowPlayingMessage.js

This commit is contained in:
2023-07-09 12:30:00 +02:00
committed by GitHub
parent c7fcbc5a80
commit cdb4ac3670

View File

@@ -44,7 +44,7 @@ function nowPlayingMessage(interaction, song, prematureEnd = false) {
}); });
}); });
} }
}, 1000); }, 5000);
// Store the interval ID in the intervalMap // Store the interval ID in the intervalMap
intervalMap.set(interaction.guild.id, inter); intervalMap.set(interaction.guild.id, inter);
@@ -65,4 +65,4 @@ function nowPlayingMessage(interaction, song, prematureEnd = false) {
module.exports.nowPlayingMessage = nowPlayingMessage; module.exports.nowPlayingMessage = nowPlayingMessage;
module.exports.intervalMap = intervalMap; module.exports.intervalMap = intervalMap;
module.exports.currentInteractionIds = currentInteractionIds; module.exports.currentInteractionIds = currentInteractionIds;