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:
in1tiate 2024-04-06 08:20:33 -05:00 committed by GitHub
parent 7bbf3aac17
commit 3e119783ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 1 deletions

View File

@ -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.

View File

@ -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);
}

View File

@ -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.