summary refs log tree commit diff stats
path: root/__init__.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-04-13 17:20:31 -0500
committerGitHub <noreply@github.com>2024-04-14 00:20:31 +0200
commit7a358cedc44c0892a4c369a4884a23a001535d63 (patch)
tree45e9c61d086702cc46f94986160c1ea8568f232a /__init__.py
parent9c6e33c7869d28b8fa1b3349c9a59a40aa8c1526 (diff)
downloadlingo-apworld-7a358cedc44c0892a4c369a4884a23a001535d63.tar.gz
lingo-apworld-7a358cedc44c0892a4c369a4884a23a001535d63.tar.bz2
lingo-apworld-7a358cedc44c0892a4c369a4884a23a001535d63.zip
Lingo: Remove unnecessary player_logic parameters (#3054)
A world's player_logic is accessible from the LingoWorld object, so it's not necessary to also pass the LingoPlayerLogic object through every function that uses both.
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/__init__.py b/__init__.py index b749418..25be166 100644 --- a/__init__.py +++ b/__init__.py
@@ -63,7 +63,7 @@ class LingoWorld(World):
63 self.player_logic = LingoPlayerLogic(self) 63 self.player_logic = LingoPlayerLogic(self)
64 64
65 def create_regions(self): 65 def create_regions(self):
66 create_regions(self, self.player_logic) 66 create_regions(self)
67 67
68 def create_items(self): 68 def create_items(self):
69 pool = [self.create_item(name) for name in self.player_logic.real_items] 69 pool = [self.create_item(name) for name in self.player_logic.real_items]