Fix: TUI refactor non complete

This commit is contained in:
2026-06-10 18:24:33 +02:00
parent d041067159
commit 0e28f8c6d8
16 changed files with 174 additions and 197 deletions
@@ -271,15 +271,15 @@ public class Player implements Serializable {
public String toString() {
int Last = -1;
var table = new AsciiTable(UNICODE, 1);
var table = new AsciiTable(ROUNDED, 1);
table.addHeader(this.getUserName());
table.addRow("RESOURCES:");
if(this.totem != null) {
table.addRow("Totem: " + this.totem.toString());
}
table.addRow("Food: " + this.getFoodValue());
table.addRow("Prestige: " + this.getPrestigeValue());
table.addRow("🍗 " + this.getFoodValue());
table.addRow("2\uD83C\uDFC5 " + this.getPrestigeValue());
table.addSeparator();
if(!this.hunters.isEmpty()){