mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-22 15:45:04 -07:00
Core: Fix non-progression item links (in the most cursed way possible)
https://discord.com/channels/731205301247803413/1214608557077700720/1283880700126302228 :)
This commit is contained in:
@@ -335,6 +335,11 @@ class MultiWorld():
|
||||
for item_name, item_count in next(iter(common_item_count.values())).items():
|
||||
for _ in range(item_count):
|
||||
new_item = group["world"].create_item(item_name)
|
||||
|
||||
class AdvancementTrue(new_item.__class__):
|
||||
advancement = True
|
||||
new_item.__class__ = AdvancementTrue
|
||||
|
||||
# mangle together all original classification bits
|
||||
new_item.classification |= classifications[item_name]
|
||||
new_itempool.append(new_item)
|
||||
|
||||
Reference in New Issue
Block a user