Skip to content

Commit 9641e68

Browse files
committed
Skip trash buffs in SSC and Hyjal (while normal has tuning(
1 parent 9bdc5bd commit 9641e68

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/mod_zone_difficulty_scripts.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1080,6 +1080,10 @@ class mod_zone_difficulty_allcreaturescript : public AllCreatureScript
10801080

10811081
if (sZoneDifficulty->CreatureOverrides.find(entry) == sZoneDifficulty->CreatureOverrides.end())
10821082
{
1083+
// TEMPORARY!!! It conflicts with CC normal mode tuning, dont apply trash tuning to hyjal and ssc
1084+
if (creature->GetMap()->GetId() == 534 || creature->GetMap()->GetId() == 548)
1085+
return;
1086+
10831087
// Trash mobs. Apply generic tuning.
10841088
if (!creature->IsDungeonBoss() && isMythic)
10851089
scaledBaseHealth = round(baseHealth * sZoneDifficulty->MythicmodeHpModifier);

0 commit comments

Comments
 (0)