diff --git a/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/ReserveListener.java b/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/ReserveListener.java index 2cba304..6377235 100644 --- a/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/ReserveListener.java +++ b/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/ReserveListener.java @@ -123,7 +123,7 @@ public class ReserveListener extends EconomyAdapter { @EventHandler public void onCurrencyHoldCheck(CurrencyHoldEvent event) { - if (event.getAccount() == null || !transactionCanFail()) { + if (event.getAccount() == null || !transactionCanFail() || event.canHold()) { return; } diff --git a/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/VaultListener.java b/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/VaultListener.java index 6d0c1cb..b3b022d 100644 --- a/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/VaultListener.java +++ b/src/main/java/com/Acrobot/ChestShop/Listeners/Economy/Plugins/VaultListener.java @@ -230,7 +230,7 @@ public class VaultListener extends EconomyAdapter { @EventHandler public void onCurrencyHoldCheck(CurrencyHoldEvent event) { - if (!checkSetup() || event.getAccount() == null || !transactionCanFail()) { + if (!checkSetup() || event.getAccount() == null || !transactionCanFail() || event.canHold()) { return; }