Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

Commit

Permalink
Fix Quinn Valor #149
Browse files Browse the repository at this point in the history
  • Loading branch information
R3nzTheCodeGOD committed Jul 16, 2022
1 parent 67ad02c commit f099532
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion R3nzSkin/Hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,10 @@ void Hooks::init() const noexcept
change_skin_for_object(minion, owner->get_character_data_stack()->base_skin.skin);
} else {
// Just LocalPlayer
if ((hash == FNV("NunuSnowball") && playerHash == FNV("Nunu")) || (hash == FNV("KindredWolf") && playerHash == FNV("Kindred"))) {
if ((hash == FNV("NunuSnowball") && playerHash == FNV("Nunu")) ||
(hash == FNV("KindredWolf") && playerHash == FNV("Kindred")) ||
(hash == FNV("QuinnValor") && playerHash == FNV("Quinn")))
{
change_skin_for_object(minion, player->get_character_data_stack()->base_skin.skin);
continue;
}
Expand Down

0 comments on commit f099532

Please sign in to comment.