mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 19:22:56 +08:00
Moved flying objects to use ignore hit judgements
This commit is contained in:
parent
1c0ad13d82
commit
3ad36c7b84
@ -5,6 +5,7 @@ using osu.Framework.Allocation;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Beatmaps.ControlPoints;
|
||||
using osu.Game.Graphics;
|
||||
using osu.Game.Rulesets.Judgements;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osu.Game.Rulesets.Taiko.Objects.Drawables.Pieces;
|
||||
|
||||
@ -35,7 +36,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
}
|
||||
|
||||
public DrawableFlyingCentreHit(double time, bool isStrong = false)
|
||||
: base(new Hit { StartTime = time, IsStrong = isStrong })
|
||||
: base(new IgnoreHit { StartTime = time, IsStrong = isStrong })
|
||||
{
|
||||
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
||||
}
|
||||
|
@ -35,7 +35,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
|
||||
}
|
||||
|
||||
public DrawableFlyingRimHit(double time, bool isStrong = false)
|
||||
: base(new Hit { StartTime = time, IsStrong = isStrong })
|
||||
: base(new IgnoreHit { StartTime = time, IsStrong = isStrong })
|
||||
{
|
||||
HitObject.ApplyDefaults(new ControlPointInfo(), new BeatmapDifficulty());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user