From 804d379e83a3776d07dc725e122fabc98cc2fff8 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Fri, 3 Jan 2020 04:26:24 +0000 Subject: [PATCH] Proper Seer Ugoros exit location. --- .../game/data/scripts/ai/bosses/SeerUgoros/SeerUgoros.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/ai/bosses/SeerUgoros/SeerUgoros.java b/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/ai/bosses/SeerUgoros/SeerUgoros.java index b6160342f5..9faf197448 100644 --- a/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/ai/bosses/SeerUgoros/SeerUgoros.java +++ b/L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/ai/bosses/SeerUgoros/SeerUgoros.java @@ -57,7 +57,7 @@ public class SeerUgoros extends AbstractNpcAI private static final Location UGOROS_SPAWN_LOCATION = new Location(96804, 85604, -3720, 34360); private static final Location BATRACOS_SPAWN_LOCATION = new Location(96782, 85918, -3720, 34360); private static final Location ENTER_LOCATION = new Location(95984, 85692, -3720); - private static final Location EXIT_LOCATION = new Location(94701, 83053, -3580); + private static final Location EXIT_LOCATION = new Location(94763, 83562, -3425); // State private static final byte ALIVE = 0; private static final byte FIGHTING = 1; @@ -106,7 +106,7 @@ public class SeerUgoros extends AbstractNpcAI { _state = ALIVE; } - else if ((_ugoros == null) || (_attacker.calculateDistance2D(_ugoros) > 3000)) + else if ((_ugoros == null) || (_attacker.calculateDistance2D(_ugoros) > 2000)) { _state = ALIVE; _attacker = null;