Add initial SRAM class and refactor to use it

This commit is contained in:
cassidoxa
2022-02-20 00:21:33 -05:00
parent 633c221d6f
commit 8795a4b393
6 changed files with 294 additions and 30 deletions

View File

@@ -82,6 +82,7 @@ class World(object):
self.dynamic_locations = []
self.spoiler = Spoiler(self)
self.lamps_needed_for_dark_rooms = 1
self.pseudoboots = {player: False for player in range(1, players + 1)}
def intialize_regions(self):
for region in self.regions: