Log error when shop can't be saved.

This commit is contained in:
Len
2022-10-03 20:38:15 +02:00
parent 76c68f6bfa
commit 69d90e16b5
2 changed files with 35 additions and 17 deletions
@@ -355,4 +355,14 @@ public class PlayerShop {
updateSign();
}
@Override
public String toString() {
return "Shop: " + this.getShopID()
+ "type :" + this.type
+ "server :" + this.server
+ "price :" + this.price
+ "amount :" + this.amount
+ "balance :" + this.balance
+ "lastTransaction :" + this.lastTransaction;
}
}