Removed trailing whitespaces and CRLFs
[getmangos.git] / sql / updates / 0.10 / 4846_mangos_creature_template.sql
blob7e871760d733ba2e7a1a87632e6f3f2d09d6fe0d
1 -- custom
2 -- UNIT_NPC_FLAG_GUARD                 = 0x00010000, old
3 -- UNIT_NPC_FLAG_GUARD                 = 0x10000000, new
4 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x10000000) & ~0x00010000 WHERE `npcflag` & 0x00010000;
6 -- UNIT_NPC_FLAG_STABLEMASTER          = 0x00002000, old
7 -- UNIT_NPC_FLAG_STABLEMASTER          = 0x00400000, new
8 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00400000) & ~0x00002000 WHERE `npcflag` & 0x00002000;
10 -- UNIT_NPC_FLAG_AUCTIONEER            = 0x00001000, old
11 -- UNIT_NPC_FLAG_AUCTIONEER            = 0x00200000, new
12 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00200000) & ~0x00001000 WHERE `npcflag` & 0x00001000;
14 -- UNIT_NPC_FLAG_BATTLEFIELDPERSON     = 0x00000800, old
15 -- UNIT_NPC_FLAG_BATTLEMASTER          = 0x00100000, new
16 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00100000) & ~0x00000800 WHERE `npcflag` & 0x00000800;
18 -- UNIT_NPC_FLAG_ARMORER               = 0x00004000, old
19 -- UNIT_NPC_FLAG_REPAIR                = 0x00001000, new
20 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00001000) & ~0x00004000 WHERE `npcflag` & 0x00004000;
22 -- UNIT_NPC_FLAG_TABARDDESIGNER        = 0x00000400, old
23 -- UNIT_NPC_FLAG_TABARDDESIGNER        = 0x00080000, new
24 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00080000) & ~0x00000400 WHERE `npcflag` & 0x00000400;
26 -- UNIT_NPC_FLAG_PETITIONER            = 0x00000200, old
27 -- UNIT_NPC_FLAG_PETITIONER            = 0x00040000, new
28 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00040000) & ~0x00000200 WHERE `npcflag` & 0x00000200;
30 -- UNIT_NPC_FLAG_BANKER                = 0x00000100, old
31 -- UNIT_NPC_FLAG_BANKER                = 0x00020000, new
32 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00020000) & ~0x00000100 WHERE `npcflag` & 0x00000100;
34 -- UNIT_NPC_FLAG_INNKEEPER             = 0x00000080, old
35 -- UNIT_NPC_FLAG_INNKEEPER             = 0x00010000, new
36 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00010000) & ~0x00000080 WHERE `npcflag` & 0x00000080;
38 -- UNIT_NPC_FLAG_SPIRITGUIDE           = 0x00000040, old
39 -- UNIT_NPC_FLAG_SPIRITGUIDE           = 0x00008000, new
40 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00008000) & ~0x00000040 WHERE `npcflag` & 0x00000040;
42 -- UNIT_NPC_FLAG_SPIRITHEALER          = 0x00000020, old
43 -- UNIT_NPC_FLAG_SPIRITHEALER          = 0x00004000, new
44 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00004000) & ~0x00000020 WHERE `npcflag` & 0x00000020;
46 -- UNIT_NPC_FLAG_TAXIVENDOR            = 0x00000008, old
47 -- UNIT_NPC_FLAG_FLIGHTMASTER          = 0x00002000, new
48 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00002000) & ~0x00000008 WHERE `npcflag` & 0x00000008;
50 -- UNIT_NPC_FLAG_VENDOR                = 0x00000004, old
51 -- UNIT_NPC_FLAG_VENDOR                = 0x00000080, new
52 UPDATE `creature_template` SET `npcflag` = (`npcflag` | 0x00000080) & ~0x00000004 WHERE `npcflag` & 0x00000004;