Skip to content

Commit

Permalink
Changed default value of destroy.break to true
Browse files Browse the repository at this point in the history
  • Loading branch information
onebone committed Jun 4, 2016
1 parent 8b2c70f commit 022156e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/me/onebone/economysell/EconomySell.java
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ public void onBreak(BlockBreakEvent event) {
return;
}

if(this.getConfig().getBoolean("destroy.break")){
if(this.getConfig().getBoolean("destroy.break", true)){
Sell shop = this.sells.get(key);

if(shop.getDisplayer() != null){
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ language: en
sell:
tap-twice: true
destroy:
block: false
block: true

0 comments on commit 022156e

Please sign in to comment.