We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc73116 commit be6838fCopy full SHA for be6838f
Core/src/main/java/com/plotsquared/core/command/Download.java
@@ -136,7 +136,9 @@ public void run(URL url) {
136
}
137
player.sendMessage(
138
TranslatableCaption.of("web.generation_link_success_legacy_world"),
139
- TagResolver.resolver("url", Tag.inserting(Component.text(url.toString())))
+ TagResolver.builder()
140
+ .tag("url", Tag.preProcessParsed(url.toString()))
141
+ .build()
142
);
143
144
});
0 commit comments