Only withdraw creation price if higher than zero

Fixes #285
This commit is contained in:
Eric 2019-12-15 15:35:42 +01:00
parent 8ed16d7f3f
commit fd5ebd0921
1 changed files with 7 additions and 5 deletions

View File

@ -484,11 +484,13 @@ public class ShopInteractListener implements Listener {
return;
}
EconomyResponse r = plugin.getEconomy().withdrawPlayer(executor, location.getWorld().getName(), creationPrice);
if (!r.transactionSuccess()) {
plugin.debug("Economy transaction failed: " + r.errorMessage);
executor.sendMessage(LanguageUtils.getMessage(Message.ERROR_OCCURRED, new Replacement(Placeholder.ERROR, r.errorMessage)));
return;
if (creationPrice > 0) {
EconomyResponse r = plugin.getEconomy().withdrawPlayer(executor, location.getWorld().getName(), creationPrice);
if (!r.transactionSuccess()) {
plugin.debug("Economy transaction failed: " + r.errorMessage);
executor.sendMessage(LanguageUtils.getMessage(Message.ERROR_OCCURRED, new Replacement(Placeholder.ERROR, r.errorMessage)));
return;
}
}
shop.create(true);