Added messages/placeholders for failed transactions
This commit is contained in:
@@ -59,11 +59,15 @@ public class ShopTypeConfig {
|
||||
public String shopSold = "<white><user> bought <amount> <item>(s) from you for <price>.";
|
||||
public String shopInventoryFull = "<red>This shop does not have enough space in its inventory.";
|
||||
public String shopNoStock = "<red>This shop is out of stock.";
|
||||
public String yourShopNoFunds = "<red>Your <item> shop at <location> is out of funds";
|
||||
public String yourShopNoStock = "<red>Your <item> shop at <location> is out of stock";
|
||||
private void transactionMessages() {
|
||||
playerInventoryFull = getString("transaction.player-inventory-full", playerInventoryFull);
|
||||
playerNoFunds = getString("transaction.player-no-funds", playerNoFunds);
|
||||
shopInventoryFull = getString("transaction.shop-inventory-full", shopInventoryFull);
|
||||
shopNoStock = getString("transaction.shop-no-stock", shopNoStock);
|
||||
yourShopNoFunds = getString("transaction.your-shop-no-funds", yourShopNoFunds);
|
||||
yourShopNoStock = getString("transaction.your-shop-no-stock", yourShopNoStock);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user