From 54fb944948e668dc673caf98094c7d92851bec56 Mon Sep 17 00:00:00 2001 From: Benjamin Jackson <38561765+heyitsbench@users.noreply.github.com> Date: Tue, 6 Sep 2022 20:05:13 -0400 Subject: [PATCH] fix(DB/creature): Correct Newman's Landing NPC positions and vendor items. (#12914) --- .../updates/pending_db_world/newmans-landing.sql | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 data/sql/updates/pending_db_world/newmans-landing.sql diff --git a/data/sql/updates/pending_db_world/newmans-landing.sql b/data/sql/updates/pending_db_world/newmans-landing.sql new file mode 100644 index 000000000..7edffac04 --- /dev/null +++ b/data/sql/updates/pending_db_world/newmans-landing.sql @@ -0,0 +1,14 @@ +DELETE FROM `npc_vendor` WHERE `entry` = 26081; +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`, `maxcount`, `incrtime`, `ExtendedCost`, `VerifiedBuild`) VALUES +(26081, 2, 2880, 0, 0, 0, 0), +(26081, 0, 2901, 0, 0, 0, 0), +(26081, 3, 3466, 0, 0, 0, 0), +(26081, 5, 3857, 0, 0, 0, 0), +(26081, 1, 5956, 0, 0, 0, 0), +(26081, 4, 18567, 0, 0, 0, 0); + +UPDATE `creature_equip_template` SET `ItemID1` = 19022 WHERE `CreatureID` = 26081; + +UPDATE `creature` SET `position_x` = -6378.61, `position_y` = 1263.21, `position_z` = 7.2709, `orientation` = 3.03687 WHERE `guid` = 1975958; +UPDATE `creature` SET `position_x` = -6373.53, `position_y` = 1267.88, `position_z` = 7.2709, `orientation` = 2.39110 WHERE `guid` = 1975959; +UPDATE `creature` SET `position_x` = -6378.08, `position_y` = 1268.47, `position_z` = 7.2709, `orientation` = 2.44346 WHERE `guid` = 1975960;