Skip to content

Commit

Permalink
fix season names
Browse files Browse the repository at this point in the history
  • Loading branch information
Bloodmallet committed Jul 30, 2024
1 parent ffb878f commit 6838fa2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions trinket_export.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Exports trinkets from simc_support to three copy= .simc files for SimulationCraft testing purpose.
"""

import typing
from simc_support.game_data.Season import Season

Expand Down Expand Up @@ -34,22 +35,22 @@ def main():
trinkets = [
t
for t in get_trinkets_for_spec(get_wow_spec("warrior", "arms"))
if Season.SEASON_1 in t.seasons
if Season.DF_SEASON_1 in t.seasons
]
print_simc_file(trinkets, "str")

trinkets = [
t
for t in get_trinkets_for_spec(get_wow_spec("hunter", "marksmanship"))
if Season.SEASON_1 in t.seasons
if Season.DF_SEASON_1 in t.seasons
]

print_simc_file(trinkets, "agi")

trinkets = [
t
for t in get_trinkets_for_spec(get_wow_spec("shaman", "elemental"))
if Season.SEASON_1 in t.seasons
if Season.DF_SEASON_1 in t.seasons
]

print_simc_file(trinkets, "int")
Expand Down

0 comments on commit 6838fa2

Please sign in to comment.