TmpMenu/src/hooks/misc/network_can_access_multiplayer.cpp
maybegreat48 220322b910 Initial battleye bypass (#3697)
* feat: initial battleye bypass
* disable force kick toggle too
* fix: fix pointers version
* enable exclude modders toggle by default to prevent auto-kicks
2024-09-19 00:43:52 +02:00

13 lines
166 B
C++

#include "hooking/hooking.hpp"
namespace big
{
bool hooks::network_can_access_multiplayer(void* a1, int* error)
{
if (error)
*error = 0;
return true;
}
}