diff --git a/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs b/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs
index 1c33b79531..cee6d8fe41 100644
--- a/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs
+++ b/osu.Game/Online/Rooms/MultiplayerPlaylistItem.cs
@@ -40,8 +40,12 @@ namespace osu.Game.Online.Rooms
public bool Expired { get; set; }
///
- /// The order in which this will be played, starting from 0 and increasing for items which will be played later.
+ /// The order in which this will be played relative to others.
+ /// Playlist items should be played in increasing order (lower values are played first).
///
+ ///
+ /// This is only valid for items which are not . The value for expired items is undefined and should not be used.
+ ///
[Key(8)]
public ushort PlaylistOrder { get; set; }