Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
  • Loading branch information
s1lentq committed May 8, 2024
1 parent 217bff3 commit faedcf4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions reapi/src/hook_callback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1733,9 +1733,9 @@ void CBasePlayer_Observer_Think(IReGameHook_CBasePlayer_Observer_Think *chain, C
void CBasePlayer_RemoveAllItems(IReGameHook_CBasePlayer_RemoveAllItems *chain, CBasePlayer *pthis, BOOL removeSuit)
{
auto original = [chain](int _pthis, BOOL _removeSuit)
{
chain->callNext(getPrivate<CBasePlayer>(_pthis), _removeSuit);
};
{
chain->callNext(getPrivate<CBasePlayer>(_pthis), _removeSuit);
};

callVoidForward(RG_CBasePlayer_RemoveAllItems, original, indexOfEdict(pthis->pev), removeSuit);
}
Expand Down

0 comments on commit faedcf4

Please sign in to comment.