Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Yehonal committed Jun 10, 2021
1 parent 5f9b54f commit 4b96f9c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ class ChallengeModeGlobal : public GlobalScript
ChallengeModeGlobal() : GlobalScript("ChallengeModeGlobal") {
}

bool OnBeforeLootEqualChanced(Player const* player, LootStoreItemList EqualChanced, Loot& loot, LootStore const& store) override
bool OnBeforeLootEqualChanced(Player const* player, LootStoreItemList /* EqualChanced */, Loot& /* loot */, LootStore const& /* store */) override
{
if (!sChallengeMode->isEligibleForReward(player)) {
return false;
}

return true
return true;
}

bool OnItemRoll(Player const* player, LootStoreItem const */* item */, float &chance, Loot &/* loot */, LootStore const& /* store */) override
Expand Down

0 comments on commit 4b96f9c

Please sign in to comment.