From f53bdaeb7ec66cd0454642e7f78d249303035454 Mon Sep 17 00:00:00 2001 From: KimLS Date: Fri, 13 Jan 2017 23:47:17 -0800 Subject: [PATCH] Changed tic rate to 5 seconds might be too long --- world/clientlist.cpp | 2 +- world/zonelist.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/world/clientlist.cpp b/world/clientlist.cpp index 0c45a11bf..73f78f683 100644 --- a/world/clientlist.cpp +++ b/world/clientlist.cpp @@ -44,7 +44,7 @@ ClientList::ClientList() { NextCLEID = 1; - m_tick.reset(new EQ::Timer(1000, true, std::bind(&ClientList::OnTick, this, std::placeholders::_1))); + m_tick.reset(new EQ::Timer(5000, true, std::bind(&ClientList::OnTick, this, std::placeholders::_1))); } ClientList::~ClientList() { diff --git a/world/zonelist.cpp b/world/zonelist.cpp index d134e0a8e..04fa15111 100644 --- a/world/zonelist.cpp +++ b/world/zonelist.cpp @@ -40,7 +40,7 @@ ZSList::ZSList() LastAllocatedPort=0; memset(pLockedZones, 0, sizeof(pLockedZones)); - m_tick.reset(new EQ::Timer(1000, true, std::bind(&ZSList::OnTick, this, std::placeholders::_1))); + m_tick.reset(new EQ::Timer(5000, true, std::bind(&ZSList::OnTick, this, std::placeholders::_1))); } ZSList::~ZSList() {