Updated message limit from 10 -> 15
I have updated the `maxMessageCountPerInterval` from 10 to 15. This will allow some faster play from exp users. NOTE: If you have an existing server and update to this version, you will need to manually change the value in the ini file, or have no ini file to begin with. Otherwise the old ini will load in 10.
This commit is contained in:
parent
4c66ef03e2
commit
8e61fb0bae
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ bool Servatrice::initServer()
|
|||
|
||||
maxUsersPerAddress = settingsCache->value("security/max_users_per_address", 4).toInt();
|
||||
messageCountingInterval = settingsCache->value("security/message_counting_interval", 10).toInt();
|
||||
maxMessageCountPerInterval = settingsCache->value("security/max_message_count_per_interval", 10).toInt();
|
||||
maxMessageCountPerInterval = settingsCache->value("security/max_message_count_per_interval", 15).toInt();
|
||||
maxMessageSizePerInterval = settingsCache->value("security/max_message_size_per_interval", 1000).toInt();
|
||||
maxGamesPerUser = settingsCache->value("security/max_games_per_user", 5).toInt();
|
||||
commandCountingInterval = settingsCache->value("game/command_counting_interval", 10).toInt();
|
||||
|
|
Loading…
Reference in a new issue