mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 06:21:28 +00:00
Changed tic rate to 5 seconds might be too long
This commit is contained in:
parent
28325467da
commit
f53bdaeb7e
@ -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() {
|
||||
|
||||
@ -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() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user