Changed fight command text

This commit is contained in:
TiddyT 2022-05-16 17:57:13 -05:00
parent 8040e85e77
commit efbd1d0b5d

View file

@ -46,8 +46,8 @@ public class FightCommand extends CommandClass {
//Done, now roll
EmbedBuilder eb = new EmbedBuilder()
.setColor(EmbedUI.INFO)
.setTitle("Rolling...")
.setDescription("*VROOOOOOOOOOOOOOOOM*")
.setTitle("Match in progress...")
.setDescription("*POW! KABLAM! SCHNARF!*")
.setFooter(EmbedUI.BRAND)
.setTimestamp(ZonedDateTime.now());
e.getHook().sendMessageEmbeds(eb.build()).queue();
@ -55,8 +55,8 @@ public class FightCommand extends CommandClass {
User pickedUser = usersForRng.get(rng.nextInt(usersForRng.size()));
EmbedBuilder eb1 = new EmbedBuilder()
.setColor(EmbedUI.INFO)
.setTitle("VICTORY!")
.setDescription(pickedUser.getName() + " is the survivor!")
.setTitle("FATALITY!")
.setDescription(pickedUser.getName() + " wins!")
.setThumbnail(pickedUser.getAvatarUrl())
.setFooter(EmbedUI.BRAND) // TODO: Make this show the list of participants
.setTimestamp(ZonedDateTime.now());