Skip to content

Commit

Permalink
Fix NPE for players without explicitly set activation strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
2008Choco committed Feb 17, 2024
1 parent 9672903 commit 3910df4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ public ClientConfig getClientConfig() {
* @return true if active, false otherwise
*/
public boolean isVeinMinerActive() {
return activationStrategy.isActive(this);
return getActivationStrategy().isActive(this);
}

/**
Expand Down

0 comments on commit 3910df4

Please sign in to comment.