From d0a52896283a9bfed36ca897f0c2ebe870a25800 Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Sat, 12 Jun 2021 10:57:44 +0200 Subject: [PATCH] fix(DB/smart_scripts): The Plains Vision speed (#6213) During the Rite of Vision quest (id: 772), The Plains Vision creature (entry: 2983) guides the player to a location. The creature moves too fast and outruns the player, making it impossible to follow all the way. - Closes #5982 - Closes https://github.com/chromiecraft/chromiecraft/issues/680 --- data/sql/updates/pending_db_world/rev_1622735574123785029.sql | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1622735574123785029.sql diff --git a/data/sql/updates/pending_db_world/rev_1622735574123785029.sql b/data/sql/updates/pending_db_world/rev_1622735574123785029.sql new file mode 100644 index 000000000..56735b2bb --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1622735574123785029.sql @@ -0,0 +1,3 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622735574123785029'); + +UPDATE `smart_scripts` SET `action_param1` = 0 WHERE `entryorguid` = 2983 AND `source_type` = 0 AND `id` = 0 AND `link` = 0;