Skip to content

Commit

Permalink
Disable backend-api by default
Browse files Browse the repository at this point in the history
  • Loading branch information
UserNugget committed Jun 26, 2024
1 parent 2df6155 commit ffcd39f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/elytrium/limboauth/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public static class BACKEND_API {
"Should backend API be enabled?",
"Required for PlaceholderAPI expansion to work (https://github.com/UserNugget/LimboAuth-Expansion)"
})
public boolean ENABLED = true;
public boolean ENABLED = false;

@Comment("Backend API token")
public String TOKEN = Long.toString(ThreadLocalRandom.current().nextLong(Long.MAX_VALUE), 36);
Expand Down

0 comments on commit ffcd39f

Please sign in to comment.