From 726a996a254e518bac073a69ea9a61e11e1521d4 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Wed, 27 Feb 2019 14:10:22 -0600 Subject: [PATCH] Update process timer to be less aggressive --- zone/aura.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/aura.cpp b/zone/aura.cpp index ccb37a3a3..d4aee01cb 100644 --- a/zone/aura.cpp +++ b/zone/aura.cpp @@ -7,7 +7,7 @@ Aura::Aura(NPCType *type_data, Mob *owner, AuraRecord &record) : NPC(type_data, 0, owner->GetPosition(), GravityBehavior::Flying), spell_id(record.spell_id), distance(record.distance), - remove_timer(record.duration), movement_timer(100), process_timer(100), aura_id(-1) + remove_timer(record.duration), movement_timer(100), process_timer(1000), aura_id(-1) { GiveNPCTypeData(type_data); // we will delete this later on m_owner = owner->GetID();