Skip to content

Commit

Permalink
Fix VaultEconomy#isFree()
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp15b committed Aug 18, 2013
1 parent 0a15c3a commit 4530f0e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -94,7 +94,7 @@ public double getPrice() {

@Override
public boolean isFree() {
return price == 0;
return MagicSigns.getEconomy() == null || price == 0;
}

@Override
Expand Down

0 comments on commit 4530f0e

Please sign in to comment.