From ef2f073df45acce511fc70a13fa613ba42d9b46f Mon Sep 17 00:00:00 2001 From: anguaive <39011611+anguaive@users.noreply.github.com> Date: Sun, 6 Jun 2021 01:50:18 +0200 Subject: [PATCH] fix(DB/creature): Kurdros and Granistad movement (#6177) Kurdros and Granistad NPCs were standing still instead of wandering around randomly like they are supposed to. - Closes #6156 - Closes chromiecraft/chromiecraft#749 --- .../sql/updates/pending_db_world/rev_1622559179437510182.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1622559179437510182.sql diff --git a/data/sql/updates/pending_db_world/rev_1622559179437510182.sql b/data/sql/updates/pending_db_world/rev_1622559179437510182.sql new file mode 100644 index 000000000..62f5a3511 --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1622559179437510182.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1622559179437510182'); + +SET @KURDROS := 16025; +SET @GRANISTAD := 16027; +UPDATE `creature` SET `wander_distance` = 5, `MovementType` = 1 WHERE `guid` IN (@KURDROS, @GRANISTAD);