Initial video commit

This commit is contained in:
WolverinDEV
2020-11-07 13:17:51 +01:00
parent 6cd481e824
commit a37ba81a4f
46 changed files with 913 additions and 966 deletions
+3 -3
View File
@@ -208,7 +208,7 @@ void VirtualServer::executeServerTick() {
{
BEGIN_TIMINGS();
this->serverStatistics->tick();
this->server_statistics_->tick();
{
lock_guard<threads::Mutex> lock(this->join_attempts_lock);
if(system_clock::now() > this->join_last_decrease + seconds(5)) {
@@ -248,7 +248,7 @@ void VirtualServer::executeServerTick() {
BEGIN_TIMINGS();
if(this->conversation_cache_cleanup_timestamp + minutes(15) < system_clock::now()) {
debugMessage(this->serverId, "Cleaning up conversation cache.");
this->_conversation_manager->cleanup_cache();
this->conversation_manager_->cleanup_cache();
conversation_cache_cleanup_timestamp = system_clock::now();
}
END_TIMINGS(timing_ccache);
@@ -256,7 +256,7 @@ void VirtualServer::executeServerTick() {
{
BEGIN_TIMINGS();
this->musicManager->execute_tick();
this->music_manager_->execute_tick();
END_TIMINGS(music_manager);
}