1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:57:52 +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)) 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)) else if (info.CurrentMatch.Value.Team2.Value.Players.Any(u => u.Id == message.Sender.Id))
{ {
colourBox.Colour = blue; senderText.Colour = colourBox.Colour = blue;
} }
} }
} }