Changed currentCommand to statusCommand for consistency
This commit is contained in:
parent
649eea6d28
commit
9b4b3f8bd5
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ public class CommandProcessor {
|
|||
commands.add(new skipCommand());
|
||||
commands.add(new gotoCommand());
|
||||
commands.add(new loopCommand());
|
||||
commands.add(new currentCommand());
|
||||
commands.add(new statusCommand());
|
||||
commands.add(new queueCommand());
|
||||
commands.add(new songsCommand());
|
||||
commands.add(new setCreativeCommandCommand());
|
||||
|
@ -265,7 +265,7 @@ public class CommandProcessor {
|
|||
}
|
||||
}
|
||||
|
||||
private static class currentCommand extends Command {
|
||||
private static class statusCommand extends Command {
|
||||
public String getName() {
|
||||
return "status";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue