Raft: Fix filler_item_types TypeError introduced in #4782 (#5203)

This commit is contained in:
Exempt-Medic
2025-07-18 07:28:05 -04:00
committed by GitHub
parent fb9026d12d
commit da0bb80fb4

View File

@@ -93,7 +93,7 @@ class RaftWorld(World):
dupeItemPool = list(dupeItemPool)
# Finally, add items as necessary
for item in dupeItemPool:
self.extraItemNamePool.append(self.replace_item_name_as_necessary(item))
self.extraItemNamePool.append(self.replace_item_name_as_necessary(item["name"]))
assert self.extraItemNamePool, f"Don't know what extra items to create for {self.player_name}."