diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/console_cmds.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 4706bfd91..857dc61ad 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -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; |