Skip to content

Commit

Permalink
Skip trash buffs in SSC and Hyjal (while normal has tuning(
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah committed Dec 16, 2024
1 parent 9bdc5bd commit 9641e68
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/mod_zone_difficulty_scripts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,10 @@ class mod_zone_difficulty_allcreaturescript : public AllCreatureScript

if (sZoneDifficulty->CreatureOverrides.find(entry) == sZoneDifficulty->CreatureOverrides.end())
{
// TEMPORARY!!! It conflicts with CC normal mode tuning, dont apply trash tuning to hyjal and ssc
if (creature->GetMap()->GetId() == 534 || creature->GetMap()->GetId() == 548)
return;

// Trash mobs. Apply generic tuning.
if (!creature->IsDungeonBoss() && isMythic)
scaledBaseHealth = round(baseHealth * sZoneDifficulty->MythicmodeHpModifier);
Expand Down

0 comments on commit 9641e68

Please sign in to comment.