Move Joined to Channel

This commit is contained in:
DrabWeb
2017-05-20 19:37:11 -03:00
parent 3cc51006cc
commit 7eba619f80
3 changed files with 17 additions and 16 deletions

View File

@ -23,9 +23,9 @@ namespace osu.Game.Online.Chat
[JsonProperty(@"channel_id")]
public int Id;
public readonly SortedList<Message> Messages = new SortedList<Message>((m1, m2) => m1.Id.CompareTo(m2.Id));
public bool Joined;
//internal bool Joined;
public readonly SortedList<Message> Messages = new SortedList<Message>((m1, m2) => m1.Id.CompareTo(m2.Id));
public bool ReadOnly => Name != "#lazer";