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()
|
EmbedBuilder log = new EmbedBuilder()
|
||||||
.setTitle("Outfit Marked as Deleted")
|
.setTitle("Outfit Marked as Deleted")
|
||||||
|
.setFooter(outfit.getId())
|
||||||
.setThumbnail(outfit.getLink())
|
.setThumbnail(outfit.getLink())
|
||||||
.setColor(Color.RED)
|
.setColor(Color.RED)
|
||||||
.addField("Deleted By:", ctx.getAuthor().getDiscriminatedName());
|
.addField("Deleted By:", ctx.getAuthor().getDiscriminatedName());
|
||||||
|
@ -73,6 +73,7 @@ public class RestoreOutfitCommand extends Command {
|
|||||||
|
|
||||||
EmbedBuilder log = new EmbedBuilder()
|
EmbedBuilder log = new EmbedBuilder()
|
||||||
.setTitle("Outfit Restored as Active")
|
.setTitle("Outfit Restored as Active")
|
||||||
|
.setFooter(outfit.getId())
|
||||||
.setThumbnail(outfit.getLink())
|
.setThumbnail(outfit.getLink())
|
||||||
.setColor(Color.BLUE)
|
.setColor(Color.BLUE)
|
||||||
.addField("Restored By:", ctx.getAuthor().getDiscriminatedName());
|
.addField("Restored By:", ctx.getAuthor().getDiscriminatedName());
|
||||||
|
@ -76,6 +76,7 @@ public class RetagCommand extends Command {
|
|||||||
|
|
||||||
EmbedBuilder log = new EmbedBuilder()
|
EmbedBuilder log = new EmbedBuilder()
|
||||||
.setTitle("Outfit Retagged")
|
.setTitle("Outfit Retagged")
|
||||||
|
.setFooter(outfit.getId())
|
||||||
.setColor(Color.YELLOW)
|
.setColor(Color.YELLOW)
|
||||||
.setThumbnail(outfit.getLink())
|
.setThumbnail(outfit.getLink())
|
||||||
.addField("New tag:", newTag);
|
.addField("New tag:", newTag);
|
||||||
|
Loading…
Reference in New Issue
Block a user