Added OutfitID to action confirmation footers

This commit is contained in:
Salmonllama 2022-01-29 09:19:38 -05:00
parent 4aca4fb187
commit e463c7d1f3
3 changed files with 3 additions and 0 deletions

View File

@ -72,6 +72,7 @@ public class RemoveOutfitCommand extends Command {
EmbedBuilder log = new EmbedBuilder()
.setTitle("Outfit Marked as Deleted")
.setFooter(outfit.getId())
.setThumbnail(outfit.getLink())
.setColor(Color.RED)
.addField("Deleted By:", ctx.getAuthor().getDiscriminatedName());

View File

@ -73,6 +73,7 @@ public class RestoreOutfitCommand extends Command {
EmbedBuilder log = new EmbedBuilder()
.setTitle("Outfit Restored as Active")
.setFooter(outfit.getId())
.setThumbnail(outfit.getLink())
.setColor(Color.BLUE)
.addField("Restored By:", ctx.getAuthor().getDiscriminatedName());

View File

@ -76,6 +76,7 @@ public class RetagCommand extends Command {
EmbedBuilder log = new EmbedBuilder()
.setTitle("Outfit Retagged")
.setFooter(outfit.getId())
.setColor(Color.YELLOW)
.setThumbnail(outfit.getLink())
.addField("New tag:", newTag);