Hacky way to make osu! and taiko work again.

This commit is contained in:
smoogipooo
2017-09-06 17:44:51 +09:00
parent 63b61ce669
commit 29941019a5
3 changed files with 3 additions and 3 deletions

View File

@ -69,7 +69,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
var circlePiece = MainPiece as CirclePiece;
circlePiece?.FlashBox.FinishTransforms();
var offset = Time.Current - HitObject.StartTime;
var offset = !AllJudged ? 0 : Time.Current - HitObject.StartTime;
using (BeginDelayedSequence(HitObject.StartTime - Time.Current + offset, true))
{
switch (State)