Skip to content

Commit

Permalink
Merge pull request #30 from Elabar/bump-osu-version
Browse files Browse the repository at this point in the history
fix: crash on version 2022.205 or later
  • Loading branch information
Flutterish committed Feb 16, 2022
2 parents de6c7fb + 74275fe commit 801d33a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Hitokori/Mods/HitokoriModFlashlight.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected override void OnComboChange ( ValueChangedEvent<int> e ) {
}
}

public override BindableNumber<float> SizeMultiplier { get; } = new( 1 );
public override BindableFloat SizeMultiplier { get; } = new( 1 );
public override BindableBool ComboBasedSize { get; } = new( true );
public override float DefaultFlashlightSize { get; } = 1;
}
Expand Down
2 changes: 1 addition & 1 deletion Hitokori/Replays/HitokoriReplayInputHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class HitokoriReplayInputHandler : FramedReplayInputHandler<HitokoriRepla
public HitokoriReplayInputHandler ( Replay replay ) : base( replay ) { }

protected override bool IsImportant ( [NotNull] HitokoriReplayFrame frame ) => true;
public override void CollectPendingInputs ( List<IInput> inputs ) {
protected override void CollectReplayInputs ( List<IInput> inputs ) {
inputs.Add( new ReplayState<HitokoriAction> {
PressedActions = CurrentFrame?.Actions ?? new List<HitokoriAction>()
} );
Expand Down
2 changes: 1 addition & 1 deletion Hitokori/osu.Game.Rulesets.Hitokori.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ppy.osu.Game" Version="2022.127.0" />
<PackageReference Include="ppy.osu.Game" Version="2022.216.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 801d33a

Please sign in to comment.