Skip to content

Commit

Permalink
Fix config name
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Jun 26, 2023
1 parent ac6fa1d commit 376de4e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ How often (in seconds) the plugin should check if amount of connections
private long attackResetInterval = 80L;

@Comment("Disable IPs in tab completion.")
private boolean disableIPTabCompletion = false;
private boolean disableIpTabCompletion = false;

@Comment("Set to false to disable update checker.")
private boolean updateChecker = true;
Expand Down Expand Up @@ -429,7 +429,7 @@ public long attackResetInterval() {
}

public boolean disableIPTabCompletion() {
return this.disableIPTabCompletion;
return this.disableIpTabCompletion;
}

public boolean updateChecker() {
Expand Down

0 comments on commit 376de4e

Please sign in to comment.