Added OutfitID to action confirmation footers
This commit is contained in:
parent
4aca4fb187
commit
e463c7d1f3
@ -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());
|
||||
|
@ -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());
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user