Skip to content

Commit

Permalink
Fix version in banner
Browse files Browse the repository at this point in the history
  • Loading branch information
pflooky committed Jun 14, 2024
1 parent 450fb7c commit 0c49cc8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private void printArt() {
"# | |__| | | | | | |_| |_| | | |___| (_| | || (_| | | (_) | (_| | #\n" +
"# \\____/|_| |_|_|\\__|\\__, | \\_____\\__,_|\\__\\__,_|_|\\___/ \\__, | #\n" +
"# __/ | __/ | #\n" +
"# |___/ v" + String.format("%15s", (VersionUtils.VERSION)) + " |___/ #\n" +
"# |___/ " + String.format("%15s", ("v" + VersionUtils.VERSION)) + " |___/ #\n" +
"###################################################################\n";
System.out.println(art);
}
Expand Down

0 comments on commit 0c49cc8

Please sign in to comment.