Skip to content

Commit

Permalink
refactor: fix missing tld in info url
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyAreaBean committed Dec 4, 2023
1 parent 29bb6f5 commit 43059b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/cc/happyareabean/sjm/commands/SJMCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void help(BukkitCommandActor actor, CommandHelp<String> helpEntries, @Def
List<Component> list = new ArrayList<>();
list.add(Constants.HEADER);
list.add(MINIMESSAGE.deserialize(String.format("<gradient:#f7ff00:#db36a4><b>SimpleJoinMessage</b></gradient> <white>%s</white>", Constants.VERSION))
.clickEvent(openUrl("https://go.happyareabean/sjm"))
.clickEvent(openUrl("https://go.happyareabean.cc/sjm"))
.hoverEvent(MINIMESSAGE.deserialize("<rainbow>click me!")));
list.add(text()
.content("By ")
Expand Down Expand Up @@ -132,7 +132,7 @@ public void about(BukkitCommandActor actor) {
Constants.HEADER,
newline(),
MINIMESSAGE.deserialize(String.format("<gradient:#f7ff00:#db36a4><b>SimpleJoinMessage</b></gradient> <white>%s</white>", Constants.VERSION))
.clickEvent(openUrl("https://go.happyareabean/sjm"))
.clickEvent(openUrl("https://go.happyareabean.cc/sjm"))
.hoverEvent(MINIMESSAGE.deserialize("<rainbow>click me!")),
newline(),
text()
Expand Down

0 comments on commit 43059b2

Please sign in to comment.