Merge branch 'feature/configurate' of https://github.com/GeyserMC/Geyser into feature/configurate

This commit is contained in:
Camotoy 2024-09-23 13:57:58 -04:00
commit d03e661434
No known key found for this signature in database
GPG key ID: 7EEFB66FE798081F
2 changed files with 3 additions and 3 deletions

View file

@ -68,7 +68,7 @@ public interface AdvancedConfig {
@Comment("""
Geyser updates the Scoreboard after every Scoreboard packet, but when Geyser tries to handle
a lot of scoreboard packets per second can cause serious lag.
a lot of scoreboard packets per second, this can cause serious lag.
This option allows you to specify after how many Scoreboard packets per seconds
the Scoreboard updates will be limited to four updates per second.""")
@DefaultNumeric(20)

View file

@ -53,7 +53,7 @@ public interface GeyserConfig {
@Comment("""
For online mode authentication type only.
Stores a list of Bedrock players that should have their Java Edition account saved after login.
Stores a list of Bedrock player usernames that should have their Java Edition account saved after login.
This saves a token that can be reused to authenticate the player later. This does not save emails or passwords,
but you should still be cautious when adding to this list and giving others access to this Geyser instance's files.
Removing a name from this list will delete its cached login information on the next Geyser startup.
@ -281,7 +281,7 @@ public interface GeyserConfig {
@Override
@Comment("""
What type of authentication Bedrock players will be checked against when logging into the Java server.
Can be floodgate (see https://wiki.geysermc.org/floodgate/), online, or offline.""")
Can be "floodgate" (see https://wiki.geysermc.org/floodgate/), "online", or "offline".""")
@NonNull
default AuthType authType() {
return AuthType.ONLINE;