Remove redundant clears

This commit is contained in:
FutureRave 2022-03-20 11:20:53 +00:00
parent 809e66cdb1
commit 21de40c48a
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955
2 changed files with 0 additions and 10 deletions

View File

@ -210,11 +210,6 @@ namespace Components
});
for (int i = 0; i < ARRAYSIZE(CardTitles::CustomTitles); ++i)
{
CardTitles::CustomTitles[i].clear();
}
Utils::Hook(0x62EB26, CardTitles::GetPlayerCardClientInfoStub).install()->quick();
// Table lookup stuff

View File

@ -93,11 +93,6 @@ namespace Components
return false;
});
for (int i = 0; i < ARRAYSIZE(ClanTags::Tags); ++i)
{
ClanTags::Tags[i].clear();
}
// Draw clantag before playername
Utils::Hook(0x591242, ClanTags::DrawPlayerNameOnScoreboard).install()->quick();
}