We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bdc5bd commit 9641e68Copy full SHA for 9641e68
src/mod_zone_difficulty_scripts.cpp
@@ -1080,6 +1080,10 @@ class mod_zone_difficulty_allcreaturescript : public AllCreatureScript
1080
1081
if (sZoneDifficulty->CreatureOverrides.find(entry) == sZoneDifficulty->CreatureOverrides.end())
1082
{
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
+
1087
// Trash mobs. Apply generic tuning.
1088
if (!creature->IsDungeonBoss() && isMythic)
1089
scaledBaseHealth = round(baseHealth * sZoneDifficulty->MythicmodeHpModifier);
0 commit comments