[Cleanup] Remove NumberOfAvailableTitles() from titles.h (#3006)

# Notes
- This is unused.
This commit is contained in:
Alex King
2023-02-26 21:35:43 -05:00
committed by GitHub
parent 3448758c03
commit 1ff4541a9f
2 changed files with 0 additions and 13 deletions
-12
View File
@@ -93,18 +93,6 @@ EQApplicationPacket *TitleManager::MakeTitlesPacket(Client *client)
return(outapp);
}
int TitleManager::NumberOfAvailableTitles(Client *client)
{
int count = 0;
for (const auto& title : titles) {
if (IsClientEligibleForTitle(client, title)) {
++count;
}
}
return count;
}
std::string TitleManager::GetPrefix(int title_id)
{
if (!title_id) {