LTTP: fix open pyramid for real this time (#1393)

This commit is contained in:
alwaysintreble
2023-01-19 09:17:16 -06:00
committed by GitHub
parent f6616da5a9
commit 29e1c3dcf4
4 changed files with 42 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ def GetBeemizerItem(world, player: int, item):
# should be replaced with direct world.create_item(item) call in the future
def ItemFactory(items, player: int):
def ItemFactory(items: typing.Union[str, typing.Iterable[str]], player: int):
from worlds.alttp import ALTTPWorld
world = ALTTPWorld(None, player)
ret = []