mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-17 07:18:37 +00:00
Get dz safe return from cache not db
This was loading the dz from database to get safe return data every time a client's dz removal timer triggered Add the Zone::GetDynamicZone() method so zones that are dz instances can find the data from the cache of any dz systems
This commit is contained in:
@@ -164,8 +164,7 @@ bool Client::Process() {
|
||||
if (dynamiczone_removal_timer.Check() && zone && zone->GetInstanceID() != 0)
|
||||
{
|
||||
dynamiczone_removal_timer.Disable();
|
||||
DynamicZone dz = DynamicZone::LoadDzFromDatabase(zone->GetInstanceID());
|
||||
GoToDzSafeReturnOrBind(dz.GetSafeReturnLocation());
|
||||
GoToDzSafeReturnOrBind(zone->GetDynamicZone());
|
||||
}
|
||||
|
||||
if (linkdead_timer.Check()) {
|
||||
|
||||
Reference in New Issue
Block a user