rename Eta to ETA

This commit is contained in:
ZacSharp 2020-08-28 00:52:55 +02:00
parent 71dd6c6333
commit d9cecb35cb
2 changed files with 7 additions and 7 deletions

View File

@ -38,7 +38,7 @@ public final class DefaultCommands {
new GotoCommand(baritone), new GotoCommand(baritone),
new PathCommand(baritone), new PathCommand(baritone),
new ProcCommand(baritone), new ProcCommand(baritone),
new EtaCommand(baritone), new ETACommand(baritone),
new VersionCommand(baritone), new VersionCommand(baritone),
new RepackCommand(baritone), new RepackCommand(baritone),
new BuildCommand(baritone), new BuildCommand(baritone),

View File

@ -30,9 +30,9 @@ import java.util.Arrays;
import java.util.List; import java.util.List;
import java.util.stream.Stream; import java.util.stream.Stream;
public class EtaCommand extends Command { public class ETACommand extends Command {
public EtaCommand(IBaritone baritone) { public ETACommand(IBaritone baritone) {
super(baritone, "eta"); super(baritone, "eta");
} }
@ -60,19 +60,19 @@ public class EtaCommand extends Command {
@Override @Override
public String getShortDesc() { public String getShortDesc() {
return "View the current eta"; return "View the current ETA";
} }
@Override @Override
public List<String> getLongDesc() { public List<String> getLongDesc() {
return Arrays.asList( return Arrays.asList(
"The eta command provides information about the estimated time until the next segment.", "The ETA command provides information about the estimated time until the next segment.",
"and the goal", "and the goal",
"", "",
"Be aware that the eta to your goal is really unprecise", "Be aware that the ETA to your goal is really unprecise",
"", "",
"Usage:", "Usage:",
"> proc - View eta, if present" "> proc - View ETA, if present"
); );
} }
} }