Skip to content

Commit fccb9bd

Browse files
authored
Merge pull request #255 from taulazer/dependabot/nuget/ppy.osu.Game-2022.205.0
Bump ppy.osu.Game from 2022.127.0 to 2022.205.0
2 parents ae1ab0d + 23e353f commit fccb9bd

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

osu.Game.Rulesets.Tau/Mods/TauModFlashlight.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class TauModFlashlight : ModFlashlight<TauHitObject>
1818
public override float DefaultFlashlightSize => 180;
1919

2020
[SettingSource("Flashlight size", "Multiplier applied to the default flashlight size.")]
21-
public override BindableNumber<float> SizeMultiplier { get; } = new BindableNumber<float>
21+
public override BindableFloat SizeMultiplier { get; } = new BindableFloat
2222
{
2323
MinValue = 0.5f,
2424
MaxValue = 1.5f,

osu.Game.Rulesets.Tau/Replays/TauFramedReplayInputHandler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected Vector2 Position
3030
}
3131
}
3232

33-
public override void CollectPendingInputs(List<IInput> inputs)
33+
protected override void CollectReplayInputs(List<IInput> inputs)
3434
{
3535
inputs.Add(new MousePositionAbsoluteInput
3636
{

osu.Game.Rulesets.Tau/TauRuleset.cs

+6-6
Original file line numberDiff line numberDiff line change
@@ -123,32 +123,32 @@ public override StatisticRow[] CreateStatisticsForScore(ScoreInfo score, IBeatma
123123
{
124124
Columns = new[]
125125
{
126-
new StatisticItem("Timing Distribution", new HitEventTimingDistributionGraph(score.HitEvents)
126+
new StatisticItem("Timing Distribution", () => new HitEventTimingDistributionGraph(score.HitEvents)
127127
{
128128
RelativeSizeAxes = Axes.X,
129129
Height = 250
130-
}),
130+
}, true),
131131
}
132132
},
133133
new StatisticRow
134134
{
135135
Columns = new[]
136136
{
137-
new StatisticItem("Paddle Distribution", new PaddleDistributionGraph(score.HitEvents, playableBeatmap)
137+
new StatisticItem("Paddle Distribution", () => new PaddleDistributionGraph(score.HitEvents, playableBeatmap)
138138
{
139139
RelativeSizeAxes = Axes.X,
140140
Height = 250,
141-
})
141+
}, true)
142142
}
143143
},
144144
new StatisticRow
145145
{
146146
Columns = new[]
147147
{
148-
new StatisticItem(string.Empty, new SimpleStatisticTable(3, new SimpleStatisticItem[]
148+
new StatisticItem(string.Empty, ()=>new SimpleStatisticTable(3, new SimpleStatisticItem[]
149149
{
150150
new UnstableRate(score.HitEvents)
151-
}))
151+
}), true)
152152
}
153153
}
154154
};

osu.Game.Rulesets.Tau/osu.Game.Rulesets.Tau.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<EmbeddedResource Include="Resources\**" />
1515
</ItemGroup>
1616
<ItemGroup>
17-
<PackageReference Include="ppy.osu.Game" Version="2022.127.0" />
17+
<PackageReference Include="ppy.osu.Game" Version="2022.205.0" />
1818
</ItemGroup>
1919
<ItemGroup>
2020
<Folder Include="Resources\Samples\Gameplay" />

0 commit comments

Comments
 (0)