Transfer more pieces of user across

This commit is contained in:
Dean Herbert 2019-06-18 16:46:33 +09:00
parent 4baadf6319
commit 437ad2b0d0

View File

@ -267,7 +267,11 @@ namespace osu.Game.Tournament.Screens.Editors
req.Success += res => req.Success += res =>
{ {
// TODO: this should be done in a better way.
user.Username = res.Username; user.Username = res.Username;
user.Country = res.Country;
user.Cover = res.Cover;
updatePanel(); updatePanel();
}; };