Skip to content

Commit

Permalink
enable mega-dungeon-loot in season 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloodmallet committed Apr 28, 2024
1 parent 94c91cb commit 470e601
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions simc_support/game_data/Trinket.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,12 @@ def seasons(self) -> typing.List[Season]:
if self.item_id in non_seasonal_items:
return []

if (
self.expansion == Expansion.DRAGONFLIGHT
and self.source == Source.MEGA_DUNGEON
):
return [Season.SEASON_2, Season.SEASON_3, Season.SEASON_4]

seasons_ = Season.get_seasons_from_instance(self.instance)
if seasons_:
return seasons_
Expand Down

0 comments on commit 470e601

Please sign in to comment.