Skip to content

Commit

Permalink
Make '/plot download world' clickable (#4239)
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault authored Nov 19, 2023
1 parent dc73116 commit be6838f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ public void run(URL url) {
}
player.sendMessage(
TranslatableCaption.of("web.generation_link_success_legacy_world"),
TagResolver.resolver("url", Tag.inserting(Component.text(url.toString())))
TagResolver.builder()
.tag("url", Tag.preProcessParsed(url.toString()))
.build()
);
}
});
Expand Down

0 comments on commit be6838f

Please sign in to comment.