1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Colour chat names

This commit is contained in:
Dean Herbert 2018-11-17 15:35:14 +09:00
parent 49e155c2c0
commit 26286177d3

View File

@ -199,11 +199,11 @@ namespace osu.Game.Tournament.Components
}
else if (info.CurrentMatch.Value.Team1.Value.Players.Any(u => u.Id == message.Sender.Id))
{
colourBox.Colour = red;
senderText.Colour = colourBox.Colour = red;
}
else if (info.CurrentMatch.Value.Team2.Value.Players.Any(u => u.Id == message.Sender.Id))
{
colourBox.Colour = blue;
senderText.Colour = colourBox.Colour = blue;
}
}
}