Skip to content

Commit

Permalink
Fix IsHostileToEverybodyPatch sptusecbear numbers (#315)
Browse files Browse the repository at this point in the history
- Fixes IsHostileToEverybodyPatch sptusecbear numbers so they match Aki
3.8.*
- Fixes bug on Scav mode
  • Loading branch information
devbence authored May 11, 2024
2 parents 302ad6a + 3bf9032 commit 715ab79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ protected override MethodBase GetTargetMethod()
[PatchPrefix]
private static bool PatchPrefix(WildSpawnType role, ref bool __result)
{
if ((int)role == 49 || (int)role == 50)
if ((int)role == 47 || (int)role == 48)
{
__result = true;
return false;
Expand Down

0 comments on commit 715ab79

Please sign in to comment.