Skip to content

Commit

Permalink
Fix the reward npc not showing score for the newest raids
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah committed Dec 18, 2024
1 parent 9641e68 commit d843b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mod_zone_difficulty_scripts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ class mod_zone_difficulty_rewardnpc : public CreatureScript
{
npcText = NPC_TEXT_SCORE;
bool hasAnyScore = false;
for (int i = 1; i <= 16; ++i)
for (int i = 1; i <= TYPE_MAX_TIERS; ++i)
{
if (uint32 score = player->GetPlayerSetting(ModZoneDifficultyString + "score", i).value)
{
Expand Down

0 comments on commit d843b8f

Please sign in to comment.