Change recentGame description

This commit is contained in:
baz 2023-12-27 21:44:30 +00:00
parent 313a43abc5
commit 662812964f
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
const { SlashCommandBuilder, EmbedBuilder } = require('discord.js'); const { SlashCommandBuilder, EmbedBuilder } = require('discord.js');
const { getCoverURL, getGameJson } = require('../../igdbHelperFunctions.js'); const { getCoverURL, getGameJson } = require('../../igdbHelperFunctions.js');
const { getUserRegistration, getRecentGameEntry } = require('../../databaseHelperFunctions.js'); const { getUserRegistration, getRecentGameEntry, getBeatenGameCount } = require('../../databaseHelperFunctions.js');
module.exports = { module.exports = {
data: new SlashCommandBuilder() data: new SlashCommandBuilder()
@ -27,6 +27,7 @@ module.exports = {
const game = res[0]; const game = res[0];
const coverUrl = await getCoverURL(game.cover); const coverUrl = await getCoverURL(game.cover);
const num = await getBeatenGameCount(userDatabaseEntry);
const embed = new EmbedBuilder() const embed = new EmbedBuilder()
.setColor(0xFFD700) .setColor(0xFFD700)
@ -35,7 +36,7 @@ module.exports = {
.setThumbnail(`${coverUrl}`) .setThumbnail(`${coverUrl}`)
.setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() }) .setFooter({ text: 'The Ochulus • 100 Games Challenge', iconURL: interaction.client.user.avatarURL() })
.setTimestamp() .setTimestamp()
.addFields({ name: 'Description', value: `${game.summary}` }); .setDescription(`${interaction.user.displayName} has beaten ${num} games, they have ${100 - num} games remaining.`);
return interaction.reply({ embeds: [embed] }); return interaction.reply({ embeds: [embed] });
}, },