From 7c5b69d18bb315d369bf0bbfc16b795d63d0f73c Mon Sep 17 00:00:00 2001 From: Mikhail Redko Date: Wed, 21 Mar 2018 11:05:17 +0200 Subject: Core/Creatures: implement CREATURE_FLAG_EXTRA_NO_SELL_VENDOR (#21642) * Add CREATURE_FLAG_EXTRA_NO_SELL_VENDOR and use it for a single no-sell vendor in game (there are more of them in later expansions) --- sql/updates/world/3.3.5/2018_03_21_00_world.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/updates/world/3.3.5/2018_03_21_00_world.sql (limited to 'sql') diff --git a/sql/updates/world/3.3.5/2018_03_21_00_world.sql b/sql/updates/world/3.3.5/2018_03_21_00_world.sql new file mode 100644 index 00000000000..d5a36cd23dd --- /dev/null +++ b/sql/updates/world/3.3.5/2018_03_21_00_world.sql @@ -0,0 +1,2 @@ +UPDATE `creature_template` SET `flags_extra` = (`flags_extra` & ~0x1000); +UPDATE `creature_template` SET `flags_extra` = (`flags_extra` | 0x1000) WHERE `entry` = 27914; -- cgit v1.2.3