1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 04:59:52 +08:00

Fix test regression due to missing argument

This commit is contained in:
Dean Herbert
2022-03-18 16:27:14 +09:00
Unverified
parent 611562c650
commit 4bc7c69bf7
@@ -473,7 +473,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
}
protected override MasterGameplayClockContainer CreateMasterGameplayClockContainer(WorkingBeatmap beatmap)
=> new MasterGameplayClockContainer(beatmap, gameplayStartTime ?? 0);
=> new MasterGameplayClockContainer(beatmap, gameplayStartTime ?? 0, true);
}
}
}