Fix: potential windows solution for TUI
This commit is contained in:
@@ -273,13 +273,8 @@ public class Player implements Serializable {
|
||||
|
||||
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("🍗 " + this.getFoodValue());
|
||||
table.addRow("2\uD83C\uDFC5 " + this.getPrestigeValue());
|
||||
String totemStr = (this.totem != null) ? " (" + this.totem.toString() + ")" : "";
|
||||
table.addHeader(this.getUserName() + totemStr + " | \uD83C\uDF56:" + this.getFoodValue() + " | \uD83C\uDFC5:" + this.getPrestigeValue() + " ");
|
||||
table.addSeparator();
|
||||
|
||||
if(!this.hunters.isEmpty()){
|
||||
|
||||
Reference in New Issue
Block a user