Allow 2048 bans, we hit the limit of 1024…

This commit is contained in:
heinrich5991 2024-10-09 20:47:20 +02:00
parent a9e52d2b7b
commit 7e04b8c521

View file

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