From a8c4a16a00d49e818257d2248a5fe7e38a2d469a Mon Sep 17 00:00:00 2001 From: Skjalf <47818697+Nyeriah@users.noreply.github.com> Date: Fri, 12 Aug 2022 15:23:07 -0300 Subject: [PATCH] =?UTF-8?q?chore(Scripts/BlackwingLair):=20Another=20tempo?= =?UTF-8?q?rary=20solution=20to=20Chromaggu=E2=80=A6=20(#12664)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit chore(Scripts/BlackwingLair): Another temporary solution to Chromaggus being pulled through the floor --- .../BlackrockMountain/BlackwingLair/boss_chromaggus.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp index 9da7d418a..e01a22aab 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockMountain/BlackwingLair/boss_chromaggus.cpp @@ -85,7 +85,7 @@ public: Acore::Containers::RandomResize(_breathSpells, 2); // Hack fix: This is here to prevent him from being pulled from the floor underneath, remove it once maps are fixed. - creature->SetReactState(REACT_PASSIVE); + creature->SetImmuneToAll(true); } void Initialize() @@ -122,7 +122,7 @@ public: { _playerGUID = guid; // Hack fix: This is here to prevent him from being pulled from the floor underneath, remove it once maps are fixed. - me->SetReactState(REACT_AGGRESSIVE); + me->SetImmuneToAll(false); } }