mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
CI fixes
This commit is contained in:
@ -57,11 +57,11 @@ namespace osu.Game.Overlays.Profile.Sections.Kudosu
|
||||
|
||||
avaliable.TextFlow.Text = "Kudosu can be traded for kudosu stars, which will help your beatmap get " +
|
||||
"more attention. This is the number of kudosu you haven't traded in yet.";
|
||||
|
||||
|
||||
this.user.ValueChanged += newUser =>
|
||||
{
|
||||
total.KudosuValue = newUser == null ? 0 : newUser.Kudosu.Total;
|
||||
avaliable.KudosuValue = newUser == null ? 0 : newUser.Kudosu.Available;
|
||||
total.KudosuValue = newUser?.Kudosu.Total ?? 0;
|
||||
avaliable.KudosuValue = newUser?.Kudosu.Available ?? 0;
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user