From fc1c82437c46cb3ae84bf321de0d0f88e5559ea4 Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Wed, 30 Jun 2021 18:32:30 +0200 Subject: [PATCH] fix(DB/creature): Fix Sunscale Lashtails movement (#5963) Sunscale Lashtails (id: 40489 - 40496) were standing still and their respawn time was significantly lower compared to their wandering brethren (id: 19809 - 19817). I modified the immobile creatures' attributes to match with the moving ones. - Closes #5940 - Closes chromiecraft/chromiecraft#673 --- .../sql/updates/pending_db_world/rev_1621501368347745883.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1621501368347745883.sql diff --git a/data/sql/updates/pending_db_world/rev_1621501368347745883.sql b/data/sql/updates/pending_db_world/rev_1621501368347745883.sql new file mode 100644 index 000000000..bc861b295 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1621501368347745883.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1621501368347745883'); + +UPDATE `creature` +SET `modelid` = 1744, `spawntimesecs` = 275, `wander_distance` = 5, `curhealth` = 178, `movementtype` = 1 +WHERE `guid` BETWEEN 40489 AND 40496 AND `id` = 3254;