Skip to content

Commit

Permalink
disable illegal item checks by default
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Mar 15, 2024
1 parent 78ee0cd commit d392dbc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private void onInventoryMove(InventoryMoveItemEvent event) {

@Override
public boolean shouldEnable() {
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.higher-enchants.enable", true);
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.higher-enchants.enable", false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ private void onInventoryMove(InventoryMoveItemEvent event) {

@Override
public boolean shouldEnable() {
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.inapplicable-enchants.enable", true);
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.inapplicable-enchants.enable", false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private void onInventoryMove(InventoryMoveItemEvent event) {

@Override
public boolean shouldEnable() {
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.incompatible-enchants.enable", true);
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.incompatible-enchants.enable", false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private void onInventoryMove(InventoryMoveItemEvent event) {

@Override
public boolean shouldEnable() {
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.higher-enchants.enable", true);
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.higher-enchants.enable", false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private void onInventoryMove(InventoryMoveItemEvent event) {

@Override
public boolean shouldEnable() {
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.inapplicable-enchants.enable", true);
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.inapplicable-enchants.enable", false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ private void onInventoryMove(InventoryMoveItemEvent event) {

@Override
public boolean shouldEnable() {
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.incompatible-enchants.enable", true);
return AnarchyExploitFixes.getConfiguration().getBoolean("illegals.enchantments.incompatible-enchants.enable", false);
}

@Override
Expand Down

0 comments on commit d392dbc

Please sign in to comment.