Changed tic rate to 5 seconds might be too long

This commit is contained in:
KimLS
2017-01-13 23:47:17 -08:00
parent 28325467da
commit f53bdaeb7e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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() {
+1 -1
View File
@@ -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() {