mirror of
https://github.com/ppy/osu
synced 2024-12-14 02:46:27 +00:00
Fix typo
This commit is contained in:
parent
23807aa3b9
commit
041d4f93c0
@ -34,7 +34,7 @@ namespace osu.Game.Online.API
|
|||||||
|
|
||||||
public string Password;
|
public string Password;
|
||||||
|
|
||||||
public Bindable<User> LocalUser = new Bindable<User>(createGustUser());
|
public Bindable<User> LocalUser = new Bindable<User>(createGuestUser());
|
||||||
|
|
||||||
public string Token
|
public string Token
|
||||||
{
|
{
|
||||||
@ -297,10 +297,10 @@ namespace osu.Game.Online.API
|
|||||||
clearCredentials();
|
clearCredentials();
|
||||||
authentication.Clear();
|
authentication.Clear();
|
||||||
State = APIState.Offline;
|
State = APIState.Offline;
|
||||||
LocalUser.Value = createGustUser();
|
LocalUser.Value = createGuestUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static User createGustUser() => new User
|
private static User createGuestUser() => new User
|
||||||
{
|
{
|
||||||
Username = @"Guest",
|
Username = @"Guest",
|
||||||
Id = 1,
|
Id = 1,
|
||||||
|
Loading…
Reference in New Issue
Block a user