From 41b6aef23c949ac96c647e95e17bd77756fcb1da Mon Sep 17 00:00:00 2001 From: Trevor L <80716066+TRPG0@users.noreply.github.com> Date: Tue, 14 Nov 2023 23:03:40 -0700 Subject: [PATCH] Hylics 2: Unique entrance names, fix APWorld on 3.8 (#2460) * Blasphemous: Set rules for events later * Blasphemous: More misc logic fixes * Update worlds/blasphemous/Rules.py Co-authored-by: Fabian Dill * Update worlds/blasphemous/Rules.py Co-authored-by: Fabian Dill * Blasphemous: Some cleanup * Hylics 2: Unique entrance names, fix APWorld on 3.8 --------- Co-authored-by: Fabian Dill --- worlds/hylics2/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/hylics2/__init__.py b/worlds/hylics2/__init__.py index 19d901bf..1c51bacc 100644 --- a/worlds/hylics2/__init__.py +++ b/worlds/hylics2/__init__.py @@ -2,7 +2,7 @@ from typing import Dict, List, Any 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): @@ -193,7 +193,7 @@ class Hylics2World(World): 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":