Skip to content

Commit

Permalink
[0174] Fix more Lagoon Eel 20290 falling out of bounds
Browse files Browse the repository at this point in the history
Some can not be adjusted to not be above water or fall out of bounds. - Hinting towards an issue?

All need to be respawned properly.
  • Loading branch information
AnonXS committed Aug 26, 2023
1 parent 261dc79 commit 5020cfa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Updates/0174_WDB-4883_c.20290.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,11 @@ UPDATE creature SET position_x = -102.427605, position_y = 6408.821777, position
UPDATE creature SET position_x = -14.772385, position_y = 6480.810059, position_z = 4.904004 WHERE guid = 72088;
UPDATE creature SET position_x = -344.064697, position_y = 6590.368164, position_z = 5.176247 WHERE guid = 72104;

-- falling out of bounds, respawn them all at some point.
-- something is fishy about the needed z level to place them in water.
-- cant be placed in water by z adjustments evne though it hits water area z.
DELETE FROM `creature` WHERE `guid` IN (72109,72111,72114);
UPDATE creature SET position_z = 6.8843 WHERE guid = 72120;
UPDATE creature SET position_z = -5.7590 WHERE guid = 72097;
UPDATE creature SET position_z = 3.9164 WHERE guid = 72092;

0 comments on commit 5020cfa

Please sign in to comment.