Skip to content

Commit

Permalink
Hylics 2: Unique entrance names, fix APWorld on 3.8 (#2460)
Browse files Browse the repository at this point in the history
* Blasphemous: Set rules for events later

* Blasphemous: More misc logic fixes

* Update worlds/blasphemous/Rules.py

Co-authored-by: Fabian Dill <[email protected]>

* Update worlds/blasphemous/Rules.py

Co-authored-by: Fabian Dill <[email protected]>

* Blasphemous: Some cleanup

* Hylics 2: Unique entrance names, fix APWorld on 3.8

---------

Co-authored-by: Fabian Dill <[email protected]>
  • Loading branch information
TRPG0 and Berserker66 authored Nov 15, 2023
1 parent 8ce073e commit 41b6aef
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 41b6aef

Please sign in to comment.