Skip to content

Commit 88b1d9d

Browse files
authored
Scripts/CoS: Do not permabind players upon completing Mal'Ganis encounter on normal difficulty (#30339)
1 parent e0009a9 commit 88b1d9d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/server/scripts/Kalimdor/CavernsOfTime/CullingOfStratholme/boss_mal_ganis.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,9 @@ class boss_mal_ganis : public CreatureScript
8787
_defeated = true;
8888

8989
// @todo hack most likely
90-
if (InstanceMap* map = instance->instance->ToInstanceMap())
91-
map->PermBindAllPlayers();
90+
if (instance->instance->IsHeroic())
91+
if (InstanceMap* map = instance->instance->ToInstanceMap())
92+
map->PermBindAllPlayers();
9293
}
9394
}
9495

0 commit comments

Comments
 (0)