diff options
author | Killyana <morphone1@gmail.com> | 2016-04-28 17:10:52 +0100 |
---|---|---|
committer | DDuarte <dnpd.dd@gmail.com> | 2016-04-28 17:10:52 +0100 |
commit | 4da8ff95e6c48c30f66bf127792b54b9152990da (patch) | |
tree | 5d5fb767ffe7e261673b18a44915ed0bf7cce8dd | |
parent | b8f10a514f4c3c892ccc468f3d92199657efebaa (diff) |
DB/Creature: Fix some npc flags
(cherry picked from commit 6392887f2b903d052e778711c30431b738e5edd1)
-rw-r--r-- | sql/updates/world/6.x/2016_04_27_04_world_2016_04_23_02_world.sql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sql/updates/world/6.x/2016_04_27_04_world_2016_04_23_02_world.sql b/sql/updates/world/6.x/2016_04_27_04_world_2016_04_23_02_world.sql new file mode 100644 index 00000000000..e3806947c9c --- /dev/null +++ b/sql/updates/world/6.x/2016_04_27_04_world_2016_04_23_02_world.sql @@ -0,0 +1,19 @@ +-- +UPDATE `creature_template` SET `npcflag`=4096 WHERE `entry`=2404; +UPDATE `creature_template` SET `npcflag`=2 WHERE `entry`=2910; +UPDATE `creature_template` SET `npcflag`=81 WHERE `entry`=7231; +UPDATE `creature_template` SET `npcflag`=128 WHERE `entry`=8121; +UPDATE `creature_template` SET `npcflag`=2 WHERE `entry`=15309; + +DELETE FROM `npc_vendor` WHERE `entry`=8121; +INSERT INTO `npc_vendor` (`entry`, `slot`, `item`) VALUES +(8121, 0, 5740), +(8121, 0, 8624), +(8121, 0, 8625), +(8121, 0, 8626), +(8121, 0, 9312), +(8121, 0, 9313), +(8121, 0, 9314), +(8121, 0, 9315), +(8121, 0, 9317), +(8121, 0, 9318); |