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

Remove merge error

This commit is contained in:
DrabWeb 2017-05-26 03:28:09 -03:00
parent 64016f9466
commit fb0b54e66a

View File

@ -28,8 +28,6 @@ namespace osu.Game.Online.Chat
public readonly SortedList<Message> Messages = new SortedList<Message>(Comparer<Message>.Default);
public readonly SortedList<Message> Messages = new SortedList<Message>((m1, m2) => m1.Id.CompareTo(m2.Id));
public bool ReadOnly => Name != "#lazer";
public const int MAX_HISTORY = 300;