Fix: bug fixes and all version are up to date

This commit is contained in:
2026-06-12 19:10:38 +02:00
parent 29846e893e
commit 3494581c0e
7 changed files with 15 additions and 9 deletions
@@ -79,12 +79,16 @@ public class ClientLauncherTUI {
" immediately take 1 \uD83C\uDF56 for each Hunter in your tribe (with or without the icon).\n" +
" During Hunt Event, take \uD83C\uDF56 and gain PP based on your Hunter count (see 'details events').";
public static void main(String[] args) throws InterruptedException {
new ClientLauncherTUI().start();
}
/**
* Starts the TUI client. Creates a JLine terminal, loops through login → game → rematch.
*
* @throws InterruptedException if the thread is interrupted while waiting.
*/
public void main() throws InterruptedException {
private void start() throws InterruptedException {
try {
System.setOut(new PrintStream(System.out, true, StandardCharsets.UTF_8));
System.setErr(new PrintStream(System.err, true, StandardCharsets.UTF_8));