Skip to content

Commit

Permalink
Fixed missed hook installation for custom sliders (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
NSGolova authored Aug 7, 2024
1 parent da10a12 commit 63164ad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Hooks/BeatmapObjectSpawnMovementData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,8 @@ MAKE_HOOK_MATCH(GetJumpingNoteSpawnData, &BeatmapObjectSpawnMovementData::GetJum
void InstallBeatmapObjectSpawnMovementDataHooks() {
INSTALL_HOOK(NELogger::Logger, GetObstacleSpawnData);
INSTALL_HOOK(NELogger::Logger, GetJumpingNoteSpawnData);
INSTALL_HOOK(NELogger::Logger, BeatmapObjectSpawnController_Start)
INSTALL_HOOK(NELogger::Logger, BeatmapObjectSpawnController_Start);
INSTALL_HOOK(NELogger::Logger, GetSliderSpawnData)
}

NEInstallHooks(InstallBeatmapObjectSpawnMovementDataHooks);

0 comments on commit 63164ad

Please sign in to comment.