Skip to content

Commit

Permalink
Fix update checker colors
Browse files Browse the repository at this point in the history
  • Loading branch information
retrooper committed Sep 11, 2023
1 parent fa3b563 commit 214706d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public UpdateCheckerStatus checkForUpdate() {
+ ColorUtil.toString(NamedTextColor.YELLOW) + localVersion
+ ColorUtil.toString(NamedTextColor.WHITE) + ") | Latest released build: ("
+ ColorUtil.toString(NamedTextColor.GREEN) + newVersion
+ ColorUtil.toString(NamedTextColor.RED) + ")");
+ ColorUtil.toString(NamedTextColor.WHITE) + ")");
return UpdateCheckerStatus.OUTDATED;
} else if (newVersion != null && localVersion.isNewerThan(newVersion)) {
PacketEvents.getAPI().getLogManager().info("You are on a dev or pre released build of packetevents. Your build: ("
Expand Down

0 comments on commit 214706d

Please sign in to comment.