Skip to content

Commit

Permalink
Merge pull request #498 from LumpBloom7/dependabot/nuget/ppy.osu.Game…
Browse files Browse the repository at this point in the history
…-2023.1008.0

Bump ppy.osu.Game from 2023.924.0 to 2023.1008.0
  • Loading branch information
LumpBloom7 authored Oct 8, 2023
2 parents 20d6ec2 + 714ef52 commit 456fc2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,8 @@ private bool isLazySlider(HitObject hitObject)
double scoringDistance = 100 * difficulty.SliderMultiplier * sliderVelocity;
double velocity = scoringDistance / timingPoint.BeatLength;
double tickDistance = scoringDistance / difficulty.SliderTickRate;
double legacyLastTickOffset = (hitObject as IHasLegacyLastTickOffset)?.LegacyLastTickOffset ?? 0;

var sliderEvents = SliderEventGenerator.Generate(hitObject.StartTime, spanDuration, velocity, tickDistance, slider.Path.Distance, slider.RepeatCount + 1, legacyLastTickOffset,
CancellationToken.None);
var sliderEvents = SliderEventGenerator.Generate(hitObject.StartTime, spanDuration, velocity, tickDistance, slider.Path.Distance, slider.RepeatCount + 1, CancellationToken.None);

var sliderOrigin = slider.Path.PositionAt(0);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,12 +367,9 @@ private IEnumerable<Tap> createTapsFromNodes(HitObject original, IList<IList<Hit
double velocity = scoringDistance / timingPoint.BeatLength;
double tickDistance = scoringDistance / difficulty.SliderTickRate;

double legacyLastTickOffset = (original as IHasLegacyLastTickOffset)?.LegacyLastTickOffset ?? 0;

int nodeSampleIndex = 0;

foreach (var e in SliderEventGenerator.Generate(original.StartTime, spanDuration, velocity, tickDistance, curve.Path.Distance, curve.RepeatCount + 1, legacyLastTickOffset,
CancellationToken.None))
foreach (var e in SliderEventGenerator.Generate(original.StartTime, spanDuration, velocity, tickDistance, curve.Path.Distance, curve.RepeatCount + 1, CancellationToken.None))
{
switch (e.Type)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>osu.Game.Rulesets.Sentakki</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2023.924.0"/>
<PackageReference Include="ppy.osu.Game" Version="2023.1008.0"/>
</ItemGroup>

<!--Since we aren't changing the assembly name, we use the assembly title to indicate whether it is a dev build-->
Expand Down

0 comments on commit 456fc2e

Please sign in to comment.