Initial video commit
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user