Skip to content

Commit

Permalink
disable R3nzSkin detection
Browse files Browse the repository at this point in the history
  • Loading branch information
moonshadow565 committed Jul 21, 2023
1 parent 1d06195 commit 706b8cd
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions cslol-tools/lib/lol/patcher/patcher_win32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,11 +359,13 @@ static auto skinhack_detected() -> char const* {
return item;
}
}
for (auto item : forbiden_titles) {
if (FindWindowExA(nullptr, nullptr, nullptr, item)) {
return item;
}
}
// turns out people are working-around this check by starting patcher before
// remove the check for now as its just wasting CPU cycles
// for (auto item : forbiden_titles) {
// if (FindWindowExA(nullptr, nullptr, nullptr, item)) {
// return item;
// }
// }
return nullptr;
}

Expand Down

0 comments on commit 706b8cd

Please sign in to comment.