From 757f6ee9aea9e6b54a6cd64d98bcf881bdd765de Mon Sep 17 00:00:00 2001 From: PiggyPiglet Date: Fri, 30 Jan 2026 18:15:17 +0800 Subject: [PATCH] Make dump command link more accessible --- .../helpch/placeholderapi/commands/impl/local/CommandDump.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/at/helpch/placeholderapi/commands/impl/local/CommandDump.java b/src/main/java/at/helpch/placeholderapi/commands/impl/local/CommandDump.java index 8d30955..fcbca55 100644 --- a/src/main/java/at/helpch/placeholderapi/commands/impl/local/CommandDump.java +++ b/src/main/java/at/helpch/placeholderapi/commands/impl/local/CommandDump.java @@ -83,7 +83,7 @@ public final class CommandDump extends PlaceholderCommand { return; } - sender.sendMessage(Message.raw("Successfully posted dump: " + URL + key).color(Color.GREEN)); + sender.sendMessage(Message.raw("Successfully posted dump: ").color(Color.GREEN).insert(Message.raw(URL + key).color(Color.WHITE).bold(true).italic(true).link(URL + key))); // Msg.msg(sender, // "&aSuccessfully posted dump: " + URL + key); });