Changed fight command text
This commit is contained in:
parent
8040e85e77
commit
efbd1d0b5d
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue