Core: optimize away Item.world (#840)

* Core: optimize away Item.world

* Update test/general/TestFill.py

* Test: undo unnecessary changes

* lttp: remove two more Item.world writes

Co-authored-by: black-sliver <[email protected]>
This commit is contained in:
Fabian Dill
2022-08-05 17:09:21 +02:00
committed by GitHub
co-authored by black-sliver
parent d15c30f63b
commit 21f7c6c0ad
6 changed files with 9 additions and 18 deletions
+1 -2
View File
@@ -49,8 +49,7 @@ class PlayerDefinition(object):
region_name = "player" + str(self.id) + region_tag
region = Region("player" + str(self.id) + region_tag, RegionType.Generic,
"Region Hint", self.id, self.world)
self.locations += generate_locations(size,
self.id, None, region, region_tag)
self.locations += generate_locations(size, self.id, None, region, region_tag)
entrance = Entrance(self.id, region_name + "_entrance", parent)
parent.exits.append(entrance)