mirror of
https://github.com/EpicEricEE/ShopChest.git
synced 2024-11-25 03:55:22 +01:00
Fix edit sub command regarding money protection
This commit is contained in:
parent
9cf9d57c91
commit
cec3e1ccdf
@ -133,7 +133,7 @@ public class ShopCommandListener implements Listener {
|
||||
|
||||
// Check if buy price is higher than sell price
|
||||
boolean buyHigherSell = Config.FEATURES_VENDOR_MONEY_PROTECTION.get();
|
||||
if (buyHigherSell && e.getBuyPrice() < e.getSellPrice()) {
|
||||
if (e.getBuyPrice() > 0 && buyHigherSell && e.getBuyPrice() < e.getSellPrice()) {
|
||||
e.setCancelled(true);
|
||||
player.sendMessage("§cThe buy price must at least be as high as the sell price to prevent players from stealing your money."); // TODO: i18n
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user