1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 22:22:56 +08:00

Absolute default bank should be normal.

This commit is contained in:
smoogipooo 2017-04-06 11:48:48 +09:00
parent c73d6a52ec
commit 5beab4c43d

View File

@ -45,7 +45,7 @@ namespace osu.Game.Modes.Objects
if (!string.IsNullOrEmpty(sample.Bank))
continue;
sample.Bank = (overridePoint ?? timingPoint)?.SampleBank ?? string.Empty;
sample.Bank = (overridePoint ?? timingPoint)?.SampleBank ?? @"normal";
}
}
}