fix web wraps attacking

This commit is contained in:
Jelle Meeus
2024-04-30 11:30:06 +02:00
parent 7496d83d33
commit 07c8e1b4f7
2 changed files with 2 additions and 5 deletions

View File

@@ -1,7 +1,4 @@
--
-- Web Wrap: disable move, pacified; disable turn
UPDATE `creature_template` SET `unit_flags` = 4 | 131076, `unit_flags2` = 32768 WHERE (`entry` = 16486);
-- 28622: Web Wrap stunned dot
DELETE FROM `spell_script_names` WHERE `spell_id` = 28622;
INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`)

View File

@@ -306,9 +306,9 @@ public:
return GetNaxxramasAI<boss_maexxna_webwrapAI>(pCreature);
}
struct boss_maexxna_webwrapAI : public ScriptedAI
struct boss_maexxna_webwrapAI : public NullCreatureAI
{
explicit boss_maexxna_webwrapAI(Creature* c) : ScriptedAI(c) { }
explicit boss_maexxna_webwrapAI(Creature* c) : NullCreatureAI(c) { }
ObjectGuid victimGUID;