Remove unnecessary position specification

This commit is contained in:
Salman Ahmed 2022-06-07 00:34:18 +03:00
parent 4158146c71
commit b6e97e699a
1 changed files with 2 additions and 2 deletions

View File

@ -69,8 +69,8 @@ protected override void CreateNestedHitObjects(CancellationToken cancellationTok
double startTime = StartTime + (float)(i + 1) / totalSpins * Duration;
AddNested(i < SpinsRequired
? new SpinnerTick { StartTime = startTime, Position = Position }
: new SpinnerBonusTick { StartTime = startTime, Position = Position });
? new SpinnerTick { StartTime = startTime }
: new SpinnerBonusTick { StartTime = startTime });
}
}