Changed currentCommand to statusCommand for consistency

This commit is contained in:
Harry Zhou 2022-07-04 18:45:06 -05:00
parent 649eea6d28
commit 9b4b3f8bd5

View file

@ -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";
}