Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hylics 2: Unique entrance names, fix APWorld on 3.8 #2460

Merged
merged 9 commits into from
Nov 15, 2023
4 changes: 2 additions & 2 deletions worlds/hylics2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from BaseClasses import Region, Entrance, Location, Item, Tutorial, ItemClassification
from worlds.generic.Rules import set_rule
from . import Exits, Items, Locations, Options, Rules
from ..AutoWorld import WebWorld, World
from worlds.AutoWorld import WebWorld, World


class Hylics2Web(WebWorld):
Expand Down Expand Up @@ -193,7 +193,7 @@ def create_regions(self) -> None:
if j == i:
for k in exits:
# create entrance and connect it to parent and destination regions
ent = Entrance(self.player, k, reg)
ent = Entrance(self.player, f"{reg.name} {k}", reg)
reg.exits.append(ent)
if k == "New Game" and self.multiworld.random_start[self.player]:
if self.start_location == "Waynehouse":
Expand Down
Loading