Skip to content

Commit

Permalink
Remove an empty paranthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
DarwinBaker committed May 13, 2022
1 parent 0724e41 commit a3e0f6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AATool/UI/Screens/UIOverlayScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private string PrepareHeaderText(Time time)
//cycle header text
return this.titleTimer.Index switch {
2 or 3 => $"Minecraft JE: {Tracker.Category.Name} ({Tracker.Category.CurrentVersion})",
4 or 5 => $"{Main.ShortTitle} ({(UpdateRequest.UpdatesAreAvailable() ? "Outdated" : "")})",
4 or 5 => $"{Main.ShortTitle} {(UpdateRequest.UpdatesAreAvailable() ? "(Outdated)" : "")}",
6 or 7 => Paths.Web.PatreonShort,
_ => Tracker.Category.GetStatus()
};
Expand Down

0 comments on commit a3e0f6a

Please sign in to comment.