mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Add property to make the div2 internal.
This commit is contained in:
@ -24,12 +24,12 @@ namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||
{
|
||||
if (!userTriggered)
|
||||
{
|
||||
if (Judgement.TimeOffset > tick.TickTimeDistance / 2)
|
||||
if (Judgement.TimeOffset > tick.HitWindow)
|
||||
Judgement.Result = HitResult.Miss;
|
||||
return;
|
||||
}
|
||||
|
||||
if (Math.Abs(Judgement.TimeOffset) < tick.TickTimeDistance / 2)
|
||||
if (Math.Abs(Judgement.TimeOffset) < tick.HitWindow)
|
||||
{
|
||||
Judgement.Result = HitResult.Hit;
|
||||
Judgement.TaikoResult = TaikoHitResult.Great;
|
||||
|
Reference in New Issue
Block a user