feat: Update match notification format to be more concise

This commit is contained in:
VinceC
2024-11-29 04:06:56 -06:00
parent beab9a514a
commit 03c612b351

View File

@@ -152,30 +152,18 @@ class EmbedBuilders {
return new EmbedBuilder()
.setColor('#00ff00') // Green for new match requests
.setTitle('🎮 New Match Request')
.setDescription(`A new match has been requested for ${matchData.game_name}`)
.setTitle(`🎮 New ${matchData.game_name} Match`)
.setDescription(`${matchData.team_size}v${matchData.team_size} Match in ${matchData.region} Region`)
.addFields(
{
name: 'Game Details',
value: [
`📋 **Match Type:** ${matchData.match_type}`,
`👥 **Team Size:** ${matchData.team_size}v${matchData.team_size}`,
`🎯 **Class:** ${matchData.match_class}`
].join('\n'),
inline: false
name: '⏰ Starting',
value: formattedDateTime,
inline: true
},
{
name: 'Match Settings',
value: [
`🌍 **Region:** ${matchData.region}`,
`📅 **Date & Time:** ${formattedDateTime}`,
].join('\n'),
inline: false
},
{
name: 'Status',
value: `📊 **Current Status:** ${matchData.status}`,
inline: false
name: '📊 Status',
value: matchData.status,
inline: true
}
)
.setTimestamp()