diff --git a/server/gameserver/buff/callfunc.cc b/server/gameserver/buff/callfunc.cc index e3f604c5..754acb68 100644 --- a/server/gameserver/buff/callfunc.cc +++ b/server/gameserver/buff/callfunc.cc @@ -436,20 +436,10 @@ void CallFuncBuff::ProcLightCircle() if (a8::TIMER_EXEC_EVENT == event) { check_cb(); } else if (kActiveDjsSkillTimerEvent == event) { - #if 0 - for (Human* hum : context->in_human_infos) { - on_leave(hum, active_skill_meta); - } - #endif context->in_human_infos.clear(); context->active_skill_meta = args->Get(0); check_cb(); } else if (kDeactiveDjsSkillTimerEvent == event) { - #if 0 - for (Human* hum : in_range_humans) { - on_leave(hum, active_skill_meta); - } - #endif context->in_human_infos.clear(); context->active_skill_meta = nullptr; check_cb();