Skip to content

Commit

Permalink
Fix failing test due to slot data serialization
Browse files Browse the repository at this point in the history
  • Loading branch information
hesto2 committed Oct 16, 2024
1 parent 4383c4f commit 99c5432
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions worlds/civ_6/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,11 @@ def post_fill(self) -> None:

def fill_slot_data(self) -> Dict[str, Any]:
return {
"progression_style": self.options.progression_style,
"death_link": self.options.death_link,
"research_cost_multiplier": self.options.research_cost_multiplier,
"death_link_effect": self.options.death_link_effect,
"death_link_effect_percent": self.options.death_link_effect_percent,
"progression_style": self.options.progression_style.value,
"death_link": self.options.death_link.value,
"research_cost_multiplier": self.options.research_cost_multiplier.value,
"death_link_effect": self.options.death_link_effect.value,
"death_link_effect_percent": self.options.death_link_effect_percent.value,

}

Expand Down

0 comments on commit 99c5432

Please sign in to comment.