mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-27 18:13:20 -07:00
Change missing attribute error to key error.
This commit is contained in:
@@ -183,7 +183,7 @@ class MuseDashWorld(World):
|
||||
if album:
|
||||
return MuseDashSongItem(name, self.player, album)
|
||||
|
||||
song = self.md_collection.song_items.get(name)
|
||||
song = self.md_collection.song_items[name]
|
||||
return MuseDashSongItem(name, self.player, song)
|
||||
|
||||
def get_filler_item_name(self) -> str:
|
||||
|
||||
Reference in New Issue
Block a user