diff --git a/pom.xml b/pom.xml index a21dfca..40501c3 100644 --- a/pom.xml +++ b/pom.xml @@ -71,7 +71,7 @@ world.bentobox bentobox - FC-0.95 + FC-1 @@ -215,7 +215,7 @@ org.sonarsource.scanner.maven sonar-maven-plugin - 5.1 + 3.4.1.1168 verify diff --git a/src/main/java/bentobox/addon/bskyblock/commands/IslandAboutCommand.java b/src/main/java/bentobox/addon/bskyblock/commands/IslandAboutCommand.java index 6423811..e585e3b 100644 --- a/src/main/java/bentobox/addon/bskyblock/commands/IslandAboutCommand.java +++ b/src/main/java/bentobox/addon/bskyblock/commands/IslandAboutCommand.java @@ -24,7 +24,8 @@ public class IslandAboutCommand extends CompositeCommand { public boolean execute(User user, String label, List args) { user.sendRawMessage("About " + getAddon().getDescription().getName() + " " + getAddon().getDescription().getVersion() + ":"); user.sendRawMessage("Copyright (c) 2017 - 2018 tastybento, Poslovitch"); - user.sendRawMessage("See https://www.eclipse.org/legal/epl-2.0/ for license information."); + user.sendRawMessage("See https://www.eclipse.org/legal/epl-2.0/"); + user.sendRawMessage("for license information."); return true; }