From 0fb15c769861df6232f69d63ca8547993f052c5f Mon Sep 17 00:00:00 2001 From: Xevion Date: Mon, 20 Apr 2020 01:01:30 -0500 Subject: [PATCH] undo static method - will resolve into proper static method later --- triple-dungeon/map.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/triple-dungeon/map.py b/triple-dungeon/map.py index 11f3a3c..be81f45 100644 --- a/triple-dungeon/map.py +++ b/triple-dungeon/map.py @@ -100,8 +100,7 @@ class Level: self.wall_list = [] # self.entrances = [] - @staticmethod - def load_file(path: str) -> Level: + def load_file(self, path: str): """ Builds a Level from a given file path.