Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PKMN RB] Adds slot data that tells the tracker V5 logic should be considered #3995

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions worlds/pokemon_rb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,7 @@ def fill_slot_data(self) -> dict:
"require_pokedex": self.options.require_pokedex.value,
"area_1_to_1_mapping": self.options.area_1_to_1_mapping.value,
"blind_trainers": self.options.blind_trainers.value,
"v5_update": True
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"v5_update": True
"v5_update": True,

You should have a comma after the last line, so that if something is added later, the diff only shows a 1 line change instead of a 2 line change (like how this is a 1 line change because blind_trainers had a , at the end)


}
if self.options.type_chart_seed == "random" or self.options.type_chart_seed.value.isdigit():
Expand Down
Loading