Skip to content

Commit

Permalink
Add missing stuff for the new raids
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah committed Dec 11, 2024
1 parent 44ecdb7 commit af99e52
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/mod_zone_difficulty_handler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,15 @@ void ZoneDifficulty::LoadMapDifficultySettings()
EncounterCounter[544] = 1; // Magtheridon's Lair
EncounterCounter[532] = 12; // Karazhan

// Category 10
EncounterCounter[548] = 7; // Serpentshrine Cavern

// Category 11
EncounterCounter[564] = 9; // Black Temple

// Category 18
EncounterCounter[534] = 5; // Hyjal Summit

// Icons
sZoneDifficulty->ItemIcons[ITEMTYPE_MISC] = "|TInterface\\icons\\inv_misc_cape_17:15|t |TInterface\\icons\\inv_misc_gem_topaz_02:15|t |TInterface\\icons\\inv_jewelry_ring_51naxxramas:15|t ";
sZoneDifficulty->ItemIcons[ITEMTYPE_CLOTH] = "|TInterface\\icons\\inv_chest_cloth_42:15|t ";
Expand Down Expand Up @@ -936,6 +942,12 @@ bool ZoneDifficulty::HasCompletedFullTier(uint32 category, uint32 playerGuid)
case TYPE_RAID_ZA:
MapList = { 568 };
break;
case TYPE_RAID_SSC:
MapList = { 548 };
break;
case TYPE_RAID_HYJAL:
MapList = { 534 };
break;
default:
LOG_ERROR("module", "MOD-ZONE-DIFFICULTY: Category without data requested in ZoneDifficulty::HasCompletedFullTier {}", category);
return false;
Expand Down

0 comments on commit af99e52

Please sign in to comment.