fix(DB/Creature): High Overlord Saurfang (#2034)

* fix(DB/Creature): High Overlord Saurfang

- Adding UNIT_FLAG_IMMUNE_TO_NPC (disables combat/assistance with NonPlayerCharacters (NPC)) to creature High Overlord Saurfang in icc.
- Will fix issue with attacking creatures inside, and issue with DB errors about missing text.

* fix(DB/Creature): High Overlord Saurfang

Improvement. Fix issue with DB text. Thanks to @Stoabrogga
This commit is contained in:
Poszer
2019-07-12 11:29:48 +02:00
committed by GitHub
parent d55eab5638
commit 9807a3fb60

View File

@@ -0,0 +1,11 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1561967531437429600');
UPDATE `creature` SET `unit_flags` = 512 WHERE `guid` = 200984;
DELETE FROM `creature_text` WHERE `CreatureID` = 32315 AND `GroupID` BETWEEN 15 AND 18;
INSERT INTO `creature_text` (`CreatureID`, `GroupID`, `ID`, `Text`, `Type`, `Language`, `Probability`, `Emote`, `Duration`, `Sound`, `BroadcastTextId`, `TextRange`, `comment`)
VALUES
(32315,15,0,'The paladin still lives? Is it possible, Highlord? Could he have survived?',12,0,0,6,0,17107,37051,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_1'),
(32315,16,0,'Then we must save him! If we rescue Bolvar Fordragon, we may quell the unrest between the Alliance and the Horde.',12,0,0,5,0,17108,37053,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_2'),
(32315,17,0,'Our mission is now clear: The Lich King will answer for his crimes and we will save Highlord Bolvar Fordragon!',12,0,0,15,0,17109,37054,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_3'),
(32315,18,0,'Kor\'kron, prepare Orgrim\'s Hammer for its final voyage! Champions, our gunship will find a point to dock on the upper reaches of the citadel. Meet us there!',14,0,0,22,0,17110,37055,0,'High Overlord Saurfang - SAY_SAURFANG_INTRO_4');