From 393cec8d82845c2176382111532572c9e7096494 Mon Sep 17 00:00:00 2001 From: Peter Kruse Date: Mon, 28 Oct 2024 09:38:07 +0100 Subject: [PATCH] update dracthyr classes --- simc_support/game_data/WowClass.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/simc_support/game_data/WowClass.py b/simc_support/game_data/WowClass.py index 3b6b000..0617c0f 100644 --- a/simc_support/game_data/WowClass.py +++ b/simc_support/game_data/WowClass.py @@ -33,6 +33,7 @@ def __init__( self.translations = Language.Translation(translations=translations) +_all_races = Race.RACES _all_non_dracthyr_and_earthen_races = tuple( [ r @@ -92,14 +93,14 @@ def __init__( ) HUNTER = WowClass( 3, - _all_non_dracthyr_and_earthen_races + _earthen, + _all_races, Language.EmptyTranslation(), "Hunter", "hunter", ) MAGE = WowClass( 8, - _all_non_dracthyr_and_earthen_races + _earthen, + _all_races, Language.EmptyTranslation(), "Mage", "mage", @@ -156,14 +157,14 @@ def __init__( ) PRIEST = WowClass( 5, - _all_non_dracthyr_and_earthen_races + _earthen, + _all_races, Language.EmptyTranslation(), "Priest", "priest", ) ROGUE = WowClass( 4, - _all_non_dracthyr_and_earthen_races + _earthen, + _all_races, Language.EmptyTranslation(), "Rogue", "rogue", @@ -193,14 +194,14 @@ def __init__( ) WARLOCK = WowClass( 9, - _all_non_dracthyr_and_earthen_races + _earthen, + _all_races, Language.EmptyTranslation(), "Warlock", "warlock", ) WARRIOR = WowClass( 1, - _all_non_dracthyr_and_earthen_races + _earthen, + _all_races, Language.EmptyTranslation(), "Warrior", "warrior",