From 06d1ace227db85efb3974d9b229a59e35275c871 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Sun, 28 Jul 2024 12:59:13 -0400 Subject: [PATCH] Remove unused elevation from portal class --- worlds/tunic/er_data.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/worlds/tunic/er_data.py b/worlds/tunic/er_data.py index 585a907fba..754cee61ff 100644 --- a/worlds/tunic/er_data.py +++ b/worlds/tunic/er_data.py @@ -1,4 +1,4 @@ -from typing import Dict, NamedTuple, List, Optional +from typing import Dict, NamedTuple, List from enum import IntEnum @@ -7,7 +7,6 @@ class Portal(NamedTuple): region: str # AP region destination: str # vanilla destination scene tag: str # vanilla tag - elevation: Optional[int] = None # elevation of the entrance, for ladder storage rule generation def scene(self) -> str: # the actual scene name in Tunic if self.region.startswith("Shop"):