mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
Merge remote-tracking branch 'smoogipoo/timeshift-wip' into timeshift-wip
This commit is contained in:
commit
f6aa6e6b3c
@ -66,7 +66,7 @@ namespace osu.Game.Online.Multiplayer
|
|||||||
public void MapObjects(BeatmapManager beatmaps, RulesetStore rulesets)
|
public void MapObjects(BeatmapManager beatmaps, RulesetStore rulesets)
|
||||||
{
|
{
|
||||||
// If we don't have an api beatmap, the request occurred as a result of room creation, so we can query the local beatmap instead
|
// If we don't have an api beatmap, the request occurred as a result of room creation, so we can query the local beatmap instead
|
||||||
// Todo: Is this a bug?
|
// Todo: Is this a bug? Room creation only returns the beatmap ID
|
||||||
Beatmap = apiBeatmap == null ? beatmaps.QueryBeatmap(b => b.OnlineBeatmapID == BeatmapID) : apiBeatmap.ToBeatmap(rulesets);
|
Beatmap = apiBeatmap == null ? beatmaps.QueryBeatmap(b => b.OnlineBeatmapID == BeatmapID) : apiBeatmap.ToBeatmap(rulesets);
|
||||||
Ruleset = rulesets.GetRuleset(RulesetID);
|
Ruleset = rulesets.GetRuleset(RulesetID);
|
||||||
|
|
||||||
|
@ -95,6 +95,8 @@ namespace osu.Game.Online.Multiplayer
|
|||||||
// Todo: Temporary, should only remove/add new items (requires framework changes)
|
// Todo: Temporary, should only remove/add new items (requires framework changes)
|
||||||
if (Playlist.Count == 0)
|
if (Playlist.Count == 0)
|
||||||
Playlist.AddRange(other.Playlist);
|
Playlist.AddRange(other.Playlist);
|
||||||
|
else if (other.Playlist.Count > 0)
|
||||||
|
Playlist.First().ID = other.Playlist.First().ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool ShouldSerializeRoomID() => false;
|
public bool ShouldSerializeRoomID() => false;
|
||||||
|
@ -154,7 +154,9 @@ namespace osu.Game.Screens.Multi
|
|||||||
{
|
{
|
||||||
foreach (var pi in remote.Playlist)
|
foreach (var pi in remote.Playlist)
|
||||||
pi.MapObjects(beatmaps, rulesets);
|
pi.MapObjects(beatmaps, rulesets);
|
||||||
local.CopyFrom(remote);
|
|
||||||
|
if (local != remote)
|
||||||
|
local.CopyFrom(remote);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
Loading…
Reference in New Issue
Block a user