Skip to content

Commit aa02799

Browse files
committed
Update dependencies
1 parent b5146dd commit aa02799

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableConstantMovingProjectile.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace osu.Game.Rulesets.Touhosu.Objects.Drawables
1111
{
12-
public abstract class DrawableConstantMovingProjectile<T> : DrawableProjectile<T>
12+
public abstract partial class DrawableConstantMovingProjectile<T> : DrawableProjectile<T>
1313
where T : ConstantMovingProjectile
1414
{
1515
public readonly IBindable<float> SpeedMultiplierBindable = new Bindable<float>();
@@ -56,7 +56,7 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
5656
if (timeOffset < duration)
5757
return;
5858

59-
ApplyResult(r => r.Type = r.Judgement.MaxResult);
59+
ApplyResult((r, u) => r.Type = r.Judgement.MaxResult);
6060
}
6161

6262
protected override void OnApply()

osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableInstantProjectile.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace osu.Game.Rulesets.Touhosu.Objects.Drawables
77
{
8-
public class DrawableInstantProjectile : DrawableProjectile<InstantProjectile>
8+
public partial class DrawableInstantProjectile : DrawableProjectile<InstantProjectile>
99
{
1010
protected override bool CanHitPlayer => false;
1111

@@ -26,7 +26,7 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
2626
if (timeOffset < 0)
2727
return;
2828

29-
ApplyResult(r => r.Type = HitResult.IgnoreHit);
29+
ApplyResult((r, u) => r.Type = HitResult.IgnoreHit);
3030
}
3131

3232
protected override void UpdateHitStateTransforms(ArmedState state)

osu.Game.Rulesets.Touhosu/Objects/Drawables/DrawableProjectile.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
9898
if (CheckHit?.Invoke(Position) ?? false)
9999
{
100100
missTime = timeOffset;
101-
ApplyResult(h => h.Type = h.Judgement.MinResult);
102-
return;
101+
ApplyResult((r, u) => r.Type = r.Judgement.MinResult);
103102
}
104103
}
105104

osu.Game.Rulesets.Touhosu/osu.Game.Rulesets.Touhosu.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
<EmbeddedResource Include="Resources\**\*" />
1212
</ItemGroup>
1313
<ItemGroup>
14-
<PackageReference Include="ppy.osu.Game" Version="2025.118.0" />
14+
<PackageReference Include="ppy.osu.Game" Version="2025.418.1" />
1515
</ItemGroup>
1616
</Project>

0 commit comments

Comments
 (0)