Renamed AboutCommand to BentoBoxAboutCommand

This commit is contained in:
Florian CUNY 2018-08-11 14:05:33 +02:00
parent 699b439096
commit 3d441928d0

View File

@ -10,19 +10,19 @@ import world.bentobox.bentobox.api.user.User;
* Displays generic information about BentoBox such as version and license. * Displays generic information about BentoBox such as version and license.
* @author tastybento * @author tastybento
*/ */
public class AboutCommand extends CompositeCommand { public class BentoBoxAboutCommand extends CompositeCommand {
/** /**
* About * About
* @param parent parent CompositeCommand * @param parent parent CompositeCommand
*/ */
public AboutCommand(CompositeCommand parent) { public BentoBoxAboutCommand(CompositeCommand parent) {
super(parent, "about"); super(parent, "about");
} }
@Override @Override
public void setup() { public void setup() {
setDescription("commands.bentobox.about.description");
} }
@Override @Override