From 5beab4c43db8e0177aa9164428db21ab1274fc04 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Thu, 6 Apr 2017 11:48:48 +0900 Subject: [PATCH] Absolute default bank should be normal. --- osu.Game/Modes/Objects/HitObject.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Modes/Objects/HitObject.cs b/osu.Game/Modes/Objects/HitObject.cs index be2ee35915..f362d6de63 100644 --- a/osu.Game/Modes/Objects/HitObject.cs +++ b/osu.Game/Modes/Objects/HitObject.cs @@ -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"; } } }