Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/parser/parsers/game_map/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,12 @@ def _get_shop_data(self) -> list[_EntityData]:
# it's a longer story than that, but this is easier to explain than using unrelated entities
# PyCharm's linter cannot type-check this for some reason
# noinspection PyTypeChecker
shop_data.extend([{'origin': [0, -9500, 100]}, {'origin': [0, -9500, 100]}])
shop_data.extend(
[
{'origin': [0, -9500, 100]}, # Hidden King base shop
{'origin': [0, 9500, 100]}, # Archmother base shop
]
)
return shop_data

def _get_breakables_data(self) -> tuple[list[_BreakablesData], ...]:
Expand Down
Loading