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)
This commit is contained in:
Aokromes
2018-03-29 01:06:15 +02:00
parent 2da6e10bdf
commit 6c3e72ed2d
5 changed files with 25 additions and 15 deletions

View File

@@ -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;