mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-16 22:58:34 +00:00
Changed tic rate to 5 seconds might be too long
This commit is contained in:
@@ -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
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user