Fixed about command.

This commit is contained in:
tastybento 2018-08-16 00:01:24 -07:00
parent bd8f402b40
commit 04bc667655
2 changed files with 4 additions and 3 deletions

View File

@ -71,7 +71,7 @@
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>FC-0.95</version>
<version>FC-1</version>
</dependency>
</dependencies>
@ -215,7 +215,7 @@
<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>5.1</version>
<version>3.4.1.1168</version>
<executions>
<execution>
<phase>verify</phase>

View File

@ -24,7 +24,8 @@ public class IslandAboutCommand extends CompositeCommand {
public boolean execute(User user, String label, List<String> 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;
}