Make other link in deprecation message clickable too

This commit is contained in:
Riley Park 2023-03-29 19:35:13 -07:00
parent 799da8e341
commit 206fbf627d

View file

@ -1440,7 +1440,13 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ .clickEvent(ClickEvent.openUrl("https://spark.lucko.me/")))
+ )
+ .append(Component.newline())
+ .append(Component.text(" For more information please visit: https://github.com/PaperMC/Paper/issues/8948"))
+ .append(
+ Component.text(" For more information please visit: ")
+ .append(
+ Component.text()
+ .content("https://github.com/PaperMC/Paper/issues/8948")
+ .clickEvent(ClickEvent.openUrl("https://github.com/PaperMC/Paper/issues/8948")))
+ )
+ .build();
+ }
+