consistency

This commit is contained in:
Jess H 2024-05-28 04:13:44 +01:00
parent 973d8232b1
commit ed608a5565

View file

@ -28,7 +28,7 @@ public class Baritone extends Feature {
public void onTick() { public void onTick() {
IBaritoneProcess baritoneProcess = BaritoneManager.getBaritone().getPathingControlManager().mostRecentInControl().orElse(null); IBaritoneProcess baritoneProcess = BaritoneManager.getBaritone().getPathingControlManager().mostRecentInControl().orElse(null);
text = "Baritone §7[" + (baritoneProcess == null ? "INACTIVE" : baritoneProcess.displayName()) + "]"; text = "Baritone §7[" + (baritoneProcess == null ? "IDLE" : baritoneProcess.displayName()) + "]";
} }
@Override @Override