From aeeae7c16757f8ca1c970c79b235bf8e2d417cd0 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Sun, 11 Oct 2020 12:47:49 +0200 Subject: [PATCH] Fix links not being clickable --- .github/workflows/gradle.yml | 4 ++-- .../main/java/com/plotsquared/core/command/PluginCmd.java | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 0f27827f9..1f19a8e80 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -4,11 +4,11 @@ on: push: branches: - 'v5' - - 'main' + - 'v6' pull_request: branches: - 'v5' - - 'main' + - 'v6' jobs: test: diff --git a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java index 695b045f6..4184a57fb 100644 --- a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java @@ -45,10 +45,11 @@ public class PluginCmd extends SubCommand { StaticCaption.of(">> " + PlotSquared.platform().getPluginName() + " (Version: )"), Template.of("version", String.valueOf(PlotSquared.get().getVersion())) ); - player.sendMessage(StaticCaption.of(" >> Authors: Citymonstret & Empire92 & MattBDev & dordsor21 & NotMyFault & SirYwell")); - player.sendMessage(StaticCaption.of(" >> Wiki: https://wiki.intellectualsites.com/plotsquared/home")); + player.sendMessage(StaticCaption.of(">> Authors: Citymonstret & Empire92 & MattBDev & dordsor21 & NotMyFault & SirYwell")); + player.sendMessage(StaticCaption.of(">> Wiki: https://wiki.intellectualsites.com/plotsquared/home")); + player.sendMessage(StaticCaption.of(">> Discord: https://discord.gg/KxkjDVg")); player.sendMessage( - StaticCaption.of(" >> Premium: "), + StaticCaption.of(">> Premium: "), Template.of("value", String.valueOf(PremiumVerification.isPremium())) ); });