Skip to content

Commit

Permalink
Fixed reverting hitboxes on Standard
Browse files Browse the repository at this point in the history
  • Loading branch information
NSGolova committed Dec 25, 2022
1 parent 2618619 commit c612730
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "BeatLeaderModifiers",
"id": "BeatLeaderModifiers",
"author": "NSGolova",
"version": "0.2.0",
"version": "0.2.1",
"packageId": "com.beatgames.beatsaber",
"packageVersion": "1.25.1",
"coverImage": "cover.png",
Expand Down
2 changes: 1 addition & 1 deletion qpm.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"info": {
"name": "BeatLeaderModifiers",
"id": "BeatLeaderModifiers",
"version": "0.2.0",
"version": "0.2.1",
"url": null,
"additionalData": {
"overrideSoName": "libblmodifiers.so"
Expand Down
2 changes: 1 addition & 1 deletion src/RthythmGameModifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ namespace BeatLeaderModifiers {

MAKE_HOOK_MATCH(NoteControllerInit, &NoteController::Init, void, NoteController* self, NoteData* noteData, float worldRotation, Vector3 moveStartPos, Vector3 moveEndPos, Vector3 jumpEndPos, float moveDuration, float jumpDuration, float jumpGravity, float endRotation, float uniformScale, bool rotatesTowardsPlayer, bool useRandomRotation) {
NoteControllerInit(self, noteData, worldRotation, moveStartPos, moveEndPos, jumpEndPos, moveDuration, jumpDuration, jumpGravity, endRotation, uniformScale, rotatesTowardsPlayer, useRandomRotation);
if (UploadDisabledByReplay()) {
if (UploadDisabledByReplay() || customCharacterisitic != CustomCharacterisitic::betterScoring) {
return;
}
float colliderScale = 0.58;
Expand Down

0 comments on commit c612730

Please sign in to comment.