diff --git a/src/main/java/xyz/vallat/louis/commands/Download.java b/src/main/java/xyz/vallat/louis/commands/Download.java index c7298e8..10f0e9d 100644 --- a/src/main/java/xyz/vallat/louis/commands/Download.java +++ b/src/main/java/xyz/vallat/louis/commands/Download.java @@ -81,7 +81,9 @@ public class Download extends Command { event.getMember().isPresent() ? event.getMember().get().getId() : null, event.getGuildId().isPresent() ? event.getGuildId().get() : null); embed.setColor(Color.MEDIUM_SEA_GREEN).setDescription("Everything went well. " + - "Congratulations and thank you for your contribution!"); + "Congratulations and thank you" + + (event.getMember().isPresent() ? " <@!" + event.getMember().get().getId() + "> " : " ") + + "for your contribution!"); embed.addField("You imported", blocks.size() + " lines into my database", false); } else { logger.error("Could not download subtitle '{}': {}", args.get(0), subs.getStatus());