From 3f418ca3ee2f4c570ee573950eaa5deeacec4473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A9=E9=B9=BF?= <18535853+PkllonG@users.noreply.github.com> Date: Sun, 13 Apr 2025 20:28:25 +0800 Subject: [PATCH] fix(Scripts/SunwellPlateau): Entropius' darkness spawn height (#21914) --- src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp index 11e9aefb8..b3d1949e1 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_muru.cpp @@ -372,7 +372,7 @@ class spell_muru_blackhole : public SpellScript return; WorldLocation summonPos = *GetExplTargetDest(); - float destZ = summonPos.GetPositionZ() - GetCaster()->GetMapWaterOrGroundLevel(GetCaster()->GetPosition()); + float destZ = summonPos.GetPositionZ() - GetCaster()->GetMapWaterOrGroundLevel(summonPos); Position offset = { 0.0f, 0.0f, -destZ, 0.0f}; summonPos.RelocateOffset(offset); SetExplTargetDest(summonPos);