Skip to content

Commit

Permalink
Fix #398 (#399)
Browse files Browse the repository at this point in the history
Another lambda delegate was added to the method (used for `list.Any()` predicate), which took the ordinal of the method we were syncing and basically moved it by 1.

Haven't really tested it, but the change is so tiny it should just work fine.
  • Loading branch information
SokyranTheDragon authored Jan 1, 2024
1 parent c4ca6a5 commit 354b90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Mods/VanillaExpandedFramework.cs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ private static void PatchExtraPregnancyApproaches()
MpCompat.RegisterLambdaDelegate(
"VFECore.SocialCardUtility_DrawPregnancyApproach_Patch",
"AddPregnancyApproachOptions",
0, 1); // Disable extra approaches (0), set extra approach (1)
0, 2); // Disable extra approaches (0), set extra approach (2)
}

private static void PatchExpandableProjectile()
Expand Down

0 comments on commit 354b90e

Please sign in to comment.