Npc's Missing Spellclick Flags Fix 7.02

eyerobot

Gold Supporter
Superior Member
917
2015
23
Location
Barryton Michigan USA
Not all of these were missing their flags, But this is more of a broad sweep just to make sure.
Basically, A vehicle that has no spellclick flag cannot be mounted. So this adds that ability to some that didn't work. And no this is not every vehicle in the game.

Code:
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 49135; -- Skyshredder Turret
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 27061; -- Xink's Shredder
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 25334; -- Horde Siege Tank
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 29857; -- Frostbite

-- Wintergrasp
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 28312; -- Siege Engine Alliance
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 32627; -- Siege Engine Horde
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 27881; -- Catapult
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 28094; -- Demolisher
UPDATE `creature_template` SET `npcflag` = npcflag|16777216 WHERE `entry`= 28366; -- Tower Cannon
 
Top