1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 03:03:39 +08:00

Move system user colour assignment to ensure consistency

This commit is contained in:
Dean Herbert
2019-08-08 17:10:06 +09:00
Unverified
parent 21c2d2b87c
commit 6d5a7041fd
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ namespace osu.Game.Online.Chat
public ErrorMessage(string message)
: base(message)
{
Sender.Colour = @"ff0000";
// todo: this should likely be styled differently in the future.
}
}
}
+1
View File
@@ -187,6 +187,7 @@ namespace osu.Game.Users
public static readonly User SYSTEM_USER = new User
{
Username = "system",
Colour = @"9c0101",
Id = 0
};