mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Standardise naming for online ID
Rather than continuing with `ID` or `Id`, this should follow the new standards and use `OnlineID` instead. Only updating this since it's a newly introduced class.
This commit is contained in:
@ -280,10 +280,10 @@ namespace osu.Game.Tournament.Screens.Editors
|
||||
[BackgroundDependencyLoader]
|
||||
private void load()
|
||||
{
|
||||
playerId.Value = player.Id;
|
||||
playerId.Value = player.OnlineID;
|
||||
playerId.BindValueChanged(id =>
|
||||
{
|
||||
player.Id = id.NewValue ?? 0;
|
||||
player.OnlineID = id.NewValue ?? 0;
|
||||
|
||||
if (id.NewValue != id.OldValue)
|
||||
player.Username = string.Empty;
|
||||
|
Reference in New Issue
Block a user