mirror of
https://github.com/ppy/osu.git
synced 2025-01-19 12:22:57 +08:00
Fix osu!catch conversion expecting full positional data, rather than just X.
Closes #1367.
This commit is contained in:
parent
6f3a796ecf
commit
11d406aa0c
@ -18,7 +18,7 @@ namespace osu.Game.Rulesets.Catch.Beatmaps
|
||||
protected override IEnumerable<CatchBaseHit> ConvertHitObject(HitObject obj, Beatmap beatmap)
|
||||
{
|
||||
var curveData = obj as IHasCurve;
|
||||
var positionData = obj as IHasPosition;
|
||||
var positionData = obj as IHasXPosition;
|
||||
var comboData = obj as IHasCombo;
|
||||
|
||||
if (positionData == null)
|
||||
|
Loading…
Reference in New Issue
Block a user