Fix hold notes - remove glow for now.

# Conflicts:
#	osu.Game.Rulesets.Mania/Objects/Drawables/DrawableHoldNote.cs
#	osu.Game.Rulesets.Mania/Objects/Drawables/DrawableManiaHitObject.cs
This commit is contained in:
smoogipooo
2017-05-12 19:10:26 +09:00
parent 17466a662c
commit 9565bb9572
5 changed files with 17 additions and 40 deletions

View File

@ -145,8 +145,9 @@ namespace osu.Game.Rulesets.Objects.Legacy
if (split.Length > 5 && !string.IsNullOrEmpty(split[5]))
{
endTime = Convert.ToDouble(split[0], CultureInfo.InvariantCulture);
readCustomSampleBanks(string.Join(":", split.Skip(1)), bankInfo);
string[] ss = split[5].Split(':');
endTime = Convert.ToDouble(ss[0], CultureInfo.InvariantCulture);
readCustomSampleBanks(string.Join(":", ss.Skip(1)), bankInfo);
}
result = CreateHold(new Vector2(int.Parse(split[0]), int.Parse(split[1])), combo, endTime);