1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-27 01:02:54 +08:00

Update with pattern changes.

This commit is contained in:
smoogipooo 2017-05-22 10:20:42 +09:00
parent e9f7be8dce
commit 2d11a8bdf0

View File

@ -51,7 +51,7 @@ namespace osu.Game.Rulesets.Mania.Beatmaps.Patterns.Legacy
{
int nextColumn = Random.Next(start, AvailableColumns);
while (PreviousPattern.IsFilled(nextColumn))
while (PreviousPattern.ColumnHasObject(nextColumn))
nextColumn = Random.Next(start, AvailableColumns);
return nextColumn;