Skip to content

Commit

Permalink
fix(server-load-listener): change condition type
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanGmG committed Jun 11, 2023
1 parent 37b328a commit 81cd10e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class ServerLoadListener implements Listener {
@EventHandler
public void onLoad(ServerLoadEvent event){

if (!updateChecker.enabledInAsync()){
if (updateChecker.enabledInAsync()){
return;
}

Expand Down

0 comments on commit 81cd10e

Please sign in to comment.