Merge pull request #9133 from heinrich5991/pr_ddnet_2048_bans

Allow 2048 bans, we hit the limit of 1024…
This commit is contained in:
Emir Marincic 2024-10-09 19:09:13 +00:00 committed by GitHub
commit 94b23af0d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -131,7 +131,7 @@ protected:
private:
enum
{
MAX_BANS = 1024,
MAX_BANS = 2048,
};
CBan<CDataType> *m_aapHashList[HashCount][256];