From 041d4f93c0a66e84b9496b629a477965bfc983e2 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Tue, 16 May 2017 20:08:22 +0900 Subject: [PATCH] Fix typo --- osu.Game/Online/API/APIAccess.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/osu.Game/Online/API/APIAccess.cs b/osu.Game/Online/API/APIAccess.cs index 9d48c38908..032e5ccc6e 100644 --- a/osu.Game/Online/API/APIAccess.cs +++ b/osu.Game/Online/API/APIAccess.cs @@ -34,7 +34,7 @@ namespace osu.Game.Online.API public string Password; - public Bindable LocalUser = new Bindable(createGustUser()); + public Bindable LocalUser = new Bindable(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,