From 9641e680d286dd45e5685e79c4dda6676ba30837 Mon Sep 17 00:00:00 2001 From: Skjalf <47818697+Nyeriah@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:38:08 -0300 Subject: [PATCH] Skip trash buffs in SSC and Hyjal (while normal has tuning( --- src/mod_zone_difficulty_scripts.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mod_zone_difficulty_scripts.cpp b/src/mod_zone_difficulty_scripts.cpp index 320157fd..a8a815a6 100644 --- a/src/mod_zone_difficulty_scripts.cpp +++ b/src/mod_zone_difficulty_scripts.cpp @@ -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);