diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-04-13 17:20:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-14 00:20:31 +0200 |
commit | 7a358cedc44c0892a4c369a4884a23a001535d63 (patch) | |
tree | 45e9c61d086702cc46f94986160c1ea8568f232a /__init__.py | |
parent | 9c6e33c7869d28b8fa1b3349c9a59a40aa8c1526 (diff) | |
download | lingo-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__.py | 2 |
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] |