Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrochu committed Jan 10, 2025
1 parent f3f5f34 commit bcd5023
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions worlds/keymasters_keep/games/mario_party_game.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ class MarioPartyGame(Game):
def optional_game_constraint_templates(self) -> List[GameObjectiveTemplate]:
return [
GameObjectiveTemplate(
label="Use BLOCK at least once on a board",
label="Enable BLOCKs before playing a board",
data={
"BLOCK": (self.extra_dice_blocks, 1),
},
),
GameObjectiveTemplate(
label="Win a game without using BLOCK",
label="Win a board without using BLOCKs",
data={
"BLOCK": (self.extra_dice_blocks, 1),
},
Expand Down Expand Up @@ -86,7 +86,7 @@ def game_objective_templates(self) -> List[GameObjectiveTemplate]:
weight=8,
),
GameObjectiveTemplate(
label="Win a COUNT Trial in Mini-Game Stadium",
label="Win a COUNT turn Trial in Mini-Game Stadium",
data={
"COUNT": (self.minigame_trial_turn_count_range, 1),
},
Expand Down

0 comments on commit bcd5023

Please sign in to comment.