FFMQ: Create itempool in deterministic order (#4413)
This commit is contained in:
parent
c4bbcf9890
commit
3c9270d802
|
@ -260,7 +260,8 @@ def create_items(self) -> None:
|
|||
items.append(i)
|
||||
|
||||
for item_group in ("Key Items", "Spells", "Armors", "Helms", "Shields", "Accessories", "Weapons"):
|
||||
for item in self.item_name_groups[item_group]:
|
||||
# Sort for deterministic order
|
||||
for item in sorted(self.item_name_groups[item_group]):
|
||||
add_item(item)
|
||||
|
||||
if self.options.brown_boxes == "include":
|
||||
|
|
Loading…
Reference in New Issue