The Messenger: some miscellaneous cleanup. Also found a logic bug. oops. (#1654)

This commit is contained in:
alwaysintreble
2023-04-03 19:27:36 -05:00
committed by GitHub
parent ffd968d89d
commit cdd460ae15
8 changed files with 37 additions and 33 deletions

View File

@@ -20,7 +20,7 @@ class MessengerWeb(WebWorld):
"English",
"setup_en.md",
"setup/en",
["alwaysintreble"]
["alwaysintreble"],
)
tutorials = [tut_en]
@@ -89,7 +89,7 @@ class MessengerWorld(World):
if item not in
{
"Power Seal", "Time Shard", *NOTES,
*{collected_item.name for collected_item in self.multiworld.precollected_items[self.player]}
*{collected_item.name for collected_item in self.multiworld.precollected_items[self.player]},
# this is a set and currently won't create items for anything that appears in here at all
# if we get in a position where this can have duplicates of items that aren't Power Seals
# or Time shards, this will need to be redone.