Skip to content

Commit

Permalink
stupid fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FirezTheGreat committed Oct 19, 2022
1 parent 397537c commit 19b1006
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions commands/moderation/allocate.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module.exports = class Allocate extends Command {
.setAuthor({ name: interaction.guild.name, iconURL: interaction.guild.iconURL() })
.setColor('Blue')
.setThumbnail(interaction.guild.members.cache.get(id).displayAvatarURL())
.setDescription(`*Please the enter the amount of **kills** by ${name} of (${index++}) ${winner_team}.*`)
.setDescription(`*Please the enter the amount of **kills** by (${index++}) ${name} of ${winner_team}.*`)
.setFooter({ text: `1/2`, iconURL: interaction.guild.iconURL() })
.setTimestamp();

Expand All @@ -80,7 +80,7 @@ module.exports = class Allocate extends Command {
const kill_collector = await interaction.channel.awaitMessages({ filter: (message) => /^[0-9]\d*$/g.test(message.content.trim()) && message.author.id === interaction.user.id, max: 1 });

winner_stat_embed
.setDescription(`*Please the enter the amount of **deaths** of ${name} of (${index++}) ${winner_team}.*`)
.setDescription(`*Please the enter the amount of **deaths** of (${index++}) ${name} of ${winner_team}.*`)
.setFooter({ text: `2/2`, iconURL: interaction.guild.iconURL() })
.setTimestamp();

Expand All @@ -98,7 +98,7 @@ module.exports = class Allocate extends Command {
.setAuthor({ name: interaction.guild.name, iconURL: interaction.guild.iconURL() })
.setColor('Blue')
.setThumbnail(interaction.guild.members.cache.get(id).displayAvatarURL())
.setDescription(`*Please the enter the amount of **kills** by ${name} of (${index++}) ${loser_team}.*`)
.setDescription(`*Please the enter the amount of **kills** by (${index++}) ${name} of ${loser_team}.*`)
.setFooter({ text: `1/2`, iconURL: interaction.guild.iconURL() })
.setTimestamp();

Expand All @@ -107,7 +107,7 @@ module.exports = class Allocate extends Command {
const kill_collector = await interaction.channel.awaitMessages({ filter: (message) => /^[0-9]\d*$/g.test(message.content.trim()) && message.author.id === interaction.user.id, max: 1 });

loser_stat_embed
.setDescription(`*Please the enter the amount of **deaths** of ${name} of (${index++}) ${loser_team}.*`)
.setDescription(`*Please the enter the amount of **deaths** of (${index++}) ${name} of ${loser_team}.*`)
.setFooter({ text: `2/2`, iconURL: interaction.guild.iconURL() })
.setTimestamp();

Expand Down

0 comments on commit 19b1006

Please sign in to comment.