Implement get_filler_item_name for various games (#451)

This commit is contained in:
Alchav
2022-05-19 09:37:26 -04:00
committed by GitHub
parent e6e44b8747
commit dbf0458575
10 changed files with 44 additions and 2 deletions

View File

@@ -1038,3 +1038,6 @@ class OOTWorld(World):
all_state.stale[self.player] = True
return all_state
def get_filler_item_name(self) -> str:
return get_junk_item(count=1, pool=get_junk_pool(self))[0]