diff --git a/src/main/java/com/alttd/playershops/shop/PlayerShop.java b/src/main/java/com/alttd/playershops/shop/PlayerShop.java index f07ea19..737a77a 100644 --- a/src/main/java/com/alttd/playershops/shop/PlayerShop.java +++ b/src/main/java/com/alttd/playershops/shop/PlayerShop.java @@ -358,11 +358,11 @@ public class PlayerShop { @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; + + " type :" + this.type + + " server :" + this.server + + " price :" + this.price + + " amount :" + this.amount + + " balance :" + this.balance + + " lastTransaction :" + this.lastTransaction; } }