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

FF6WC: Better Objective Parsing, Prevent Softlocks with Unique Boss Count, Fix Starting Espers processing, remove APItem from shops #6

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 2 additions & 0 deletions worlds/ff6wc/WorldsCollide/data/shops.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ def remove_excluded_items(self):
exclude.append(self.items.get_id("Exp. Egg"))
if self.args.shops_no_illuminas:
exclude.append(self.items.get_id("Illumina"))
# for AP seeds, do NOT include ArchplgoItem b/c it's confusing and not necessary to sell Rename Cards anyways
exclude.append(self.items.get_id("ArchplgoItem"))

for shop in self.shops:
for item in exclude:
Expand Down
Loading