Fix Admin Shops

This commit is contained in:
L4BORG 2016-11-10 03:17:27 +01:00
parent 24eb1b1e19
commit 2ff945bbe6
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ public class PlayerInteract implements Listener {
OfflinePlayer owner = Bukkit.getOfflinePlayer(uuid);
// check if player exists in economy
if(owner == null || owner.getName() == null || !VaultListener.getProvider().hasAccount(owner))
if(!ChestShopSign.isAdminShop(sign) && (owner == null || owner.getName() == null || !VaultListener.getProvider().hasAccount(owner)))
return null;
Action buy = Properties.REVERSE_BUTTONS ? LEFT_CLICK_BLOCK : RIGHT_CLICK_BLOCK;