diff options
Diffstat (limited to 'src/main/java/net/elytrium/limboauth/Settings.java')
-rw-r--r-- | src/main/java/net/elytrium/limboauth/Settings.java | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/main/java/net/elytrium/limboauth/Settings.java b/src/main/java/net/elytrium/limboauth/Settings.java index 68bbe17..e2b45c3 100644 --- a/src/main/java/net/elytrium/limboauth/Settings.java +++ b/src/main/java/net/elytrium/limboauth/Settings.java @@ -186,14 +186,18 @@ public class Settings extends YamlConfig { "Set 200 if you use using Mojang or CloudFlare API" }) public int STATUS_CODE_USER_EXISTS = 200; - @Comment("Set 204 if you use Mojang API, 404 if you use CloudFlare API") - public int STATUS_CODE_USER_NOT_EXISTS = 204; + @Comment("Set 404 if you use Mojang or CloudFlare API") + public int STATUS_CODE_USER_NOT_EXISTS = 404; @Comment("Set 429 if you use Mojang or CloudFlare API") public int STATUS_CODE_RATE_LIMIT = 429; @Comment({ - "Sample Mojang API response: {\"name\":\"hevav\",\"id\":\"9c7024b2a48746b3b3934f397ae5d70f\"}", - "Sample CloudFlare API response: {\"uuid\":\"9c7024b2a48746b3b3934f397ae5d70f\",\"username\":\"hevav\", ...}", + "Sample Mojang API exists response: {\"name\":\"hevav\",\"id\":\"9c7024b2a48746b3b3934f397ae5d70f\"}", + "Sample CloudFlare API exists response: {\"uuid\":\"9c7024b2a48746b3b3934f397ae5d70f\",\"username\":\"hevav\", ...}", + "", + "Sample Mojang API not exists response: {\"path\":\"/users/profiles/minecraft/someletters1234566\",\"errorMessage\":\"Couldn't find any profile with that name\"}", + "Sample CloudFlare API not exists response: {\"code\":404,\"error\":\"Not Found\",\"reason\":\"No user with the name 'someletters123456' was found\"}", + "", "Responses with an invalid scheme will be identified as responses with a server error", "Set this parameter to [], to disable JSON scheme validation" }) |