diff --git a/src/Components/Modules/Auth.cpp b/src/Components/Modules/Auth.cpp index 9e47b0fb..e090e1bb 100644 --- a/src/Components/Modules/Auth.cpp +++ b/src/Components/Modules/Auth.cpp @@ -9,7 +9,9 @@ namespace Components Utils::Cryptography::ECC::Key Auth::GuidKey; std::vector Auth::BannedUids = { - 0xf4d2c30b712ac6e3 + 0xf4d2c30b712ac6e3, + 0xf7e33c4081337fa3, + 0x6f5597f103cc50e9 }; void Auth::Frame() diff --git a/src/Components/Modules/D3D9Ex.cpp b/src/Components/Modules/D3D9Ex.cpp index b1028c2b..d15f66b9 100644 --- a/src/Components/Modules/D3D9Ex.cpp +++ b/src/Components/Modules/D3D9Ex.cpp @@ -748,7 +748,7 @@ namespace Components { if (Dedicated::IsEnabled()) return; - Dvar::Register("r_useD3D9Ex", true, Game::dvar_flag::DVAR_FLAG_SAVED, "Use extended d3d9 interface!"); + Dvar::Register("r_useD3D9Ex", false, Game::dvar_flag::DVAR_FLAG_SAVED, "Use extended d3d9 interface!"); // Hook Interface creation Utils::Hook::Set(0x6D74D0, D3D9Ex::Direct3DCreate9Stub); diff --git a/src/Components/Modules/Stats.cpp b/src/Components/Modules/Stats.cpp index 9f9260ff..b2621760 100644 --- a/src/Components/Modules/Stats.cpp +++ b/src/Components/Modules/Stats.cpp @@ -66,6 +66,7 @@ namespace Components int Stats::SaveStats(char* dest, const char* folder, const char* buffer, size_t length) { const auto fs_game = Game::Dvar_FindVar("fs_game"); + if (fs_game && fs_game->current.string && strlen(fs_game->current.string) && !strncmp(fs_game->current.string, "mods/", 5)) { folder = fs_game->current.string;