Fix: TUI refactor non complete
This commit is contained in:
@@ -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()){
|
||||
|
||||
Reference in New Issue
Block a user