mirror of
https://github.com/shiroyashik/sculptor.git
synced 2025-12-06 04:51:13 +03:00
This commit is contained in:
parent
41efdc1981
commit
59ca04d5f8
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ listen = "0.0.0.0:6665"
|
|||
## If not set, default providers (Mojang, ElyBy) will be provided.
|
||||
# authProviders = [
|
||||
# { name = "Mojang", url = "https://sessionserver.mojang.com/session/minecraft/hasJoined" },
|
||||
# { name = "ElyBy", url = "http://minecraft.ely.by/session/hasJoined" },
|
||||
# { name = "ElyBy", url = "https://account.ely.by/api/minecraft/session/hasJoined" },
|
||||
# ]
|
||||
|
||||
## Enabling Asset Updater.
|
||||
|
|
|
|||
|
|
@ -61,6 +61,6 @@ pub struct AuthProviders(pub Vec<AuthProvider>);
|
|||
pub fn default_authproviders() -> AuthProviders {
|
||||
AuthProviders(vec![
|
||||
AuthProvider { name: "Mojang".to_string(), url: "https://sessionserver.mojang.com/session/minecraft/hasJoined".to_string() },
|
||||
AuthProvider { name: "ElyBy".to_string(), url: "http://minecraft.ely.by/session/hasJoined".to_string() }
|
||||
AuthProvider { name: "ElyBy".to_string(), url: "https://account.ely.by/api/minecraft/session/hasJoined".to_string() }
|
||||
])
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue