mirror of
https://github.com/ppy/osu
synced 2024-12-13 02:17:32 +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 Bindable<User> LocalUser = new Bindable<User>(createGustUser());
|
||||
public Bindable<User> LocalUser = new Bindable<User>(createGuestUser());
|
||||
|
||||
public string Token
|
||||
{
|
||||
@ -297,10 +297,10 @@ namespace osu.Game.Online.API
|
||||
clearCredentials();
|
||||
authentication.Clear();
|
||||
State = APIState.Offline;
|
||||
LocalUser.Value = createGustUser();
|
||||
LocalUser.Value = createGuestUser();
|
||||
}
|
||||
|
||||
private static User createGustUser() => new User
|
||||
private static User createGuestUser() => new User
|
||||
{
|
||||
Username = @"Guest",
|
||||
Id = 1,
|
||||
|
Loading…
Reference in New Issue
Block a user