Skip to content

Commit

Permalink
Fix shrapnel default targeting only targeting allies
Browse files Browse the repository at this point in the history
  • Loading branch information
Starkku committed May 15, 2024
1 parent e359f70 commit 00e608f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ext/Bullet/Hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ DEFINE_HOOK(0x46A4FB, BulletClass_Shrapnel_Targeting, 0x6)
}

}
else if (!pOwner->IsAlliedWith(pObject))
else if (pOwner->IsAlliedWith(pObject))
{
return SkipObject;
}
Expand Down

0 comments on commit 00e608f

Please sign in to comment.