Fix: Display banlist's indexes correctly

Bug introduced via commit ab711e6942
This commit is contained in:
Miguel Horta 2020-06-08 21:22:49 +01:00 committed by Charles Pigott
parent b7fa118069
commit 762f5d258a
1 changed files with 1 additions and 0 deletions

View File

@ -606,6 +606,7 @@ DEF_CONSOLE_CMD(ConBanList)
uint i = 1;
for (const auto &entry : _network_ban_list) {
IConsolePrintF(CC_DEFAULT, " %d) %s", i, entry.c_str());
i++;
}
return true;