2019 baby!

This commit is contained in:
tastybento 2019-01-01 08:45:11 -08:00
parent 5601ffaf8a
commit 512fb8e544
2 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ public class BentoBox extends JavaPlugin {
instance.log(instance.getDescription().getFullName() + " has been fully enabled.");
instance.log("It took: " + (System.currentTimeMillis() - startMillis + "ms"));
instance.log("Thanks for using our plugin !");
instance.log("- Tastybento and Poslovitch, 2017-2018");
instance.log("- Tastybento and Poslovitch, 2017-2019");
instance.log("#############################################");
});
}

View File

@ -28,7 +28,7 @@ public class BentoBoxAboutCommand extends CompositeCommand {
@Override
public boolean execute(User user, String label, List<String> args) {
user.sendRawMessage("About " + BentoBox.getInstance().getDescription().getName() + " v" + BentoBox.getInstance().getDescription().getVersion() + ":");
user.sendRawMessage("Copyright (c) 2017 - 2018 Tastybento, Poslovitch");
user.sendRawMessage("Copyright (c) 2017 - 2019 Tastybento, Poslovitch");
user.sendRawMessage("See https://www.eclipse.org/legal/epl-2.0/ for license information.");
return true;
}