Fix CPU core maxing out, esp. on Linux and bump version for hotfix (#350)
* fix CPU usage spike * remove accidentally included change from other branch
This commit is contained in:
parent
7bbf3aac17
commit
3e119783ca
@ -34,7 +34,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
QCoreApplication app(argc, argv);
|
||||
QCoreApplication::setApplicationName("akashi");
|
||||
QCoreApplication::setApplicationVersion("honeydew (1.8)");
|
||||
QCoreApplication::setApplicationVersion("honeydew hotfix (1.8.1)");
|
||||
std::atexit(cleanup);
|
||||
|
||||
// Verify server configuration is sound.
|
||||
|
@ -326,6 +326,7 @@ bool AreaData::isShoutAllowed() const
|
||||
void AreaData::startMessageFloodguard(int f_duration)
|
||||
{
|
||||
m_can_send_ic_messages = false;
|
||||
m_message_floodguard_timer->setSingleShot(true);
|
||||
m_message_floodguard_timer->start(f_duration);
|
||||
}
|
||||
|
||||
|
@ -144,6 +144,7 @@ void Server::start()
|
||||
|
||||
// Rate-Limiter for IC-Chat
|
||||
m_message_floodguard_timer = new QTimer(this);
|
||||
m_message_floodguard_timer->setSingleShot(true);
|
||||
connect(m_message_floodguard_timer, &QTimer::timeout, this, &Server::allowMessage);
|
||||
|
||||
// Prepare player IDs and reference hash.
|
||||
|
Loading…
Reference in New Issue
Block a user