Fix test regression due to missing argument

This commit is contained in:
Dean Herbert
2022-03-18 16:27:14 +09:00
parent 611562c650
commit 4bc7c69bf7

View File

@ -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);
}
}
}