STS: update slot_seeds to per_slot_randoms

This commit is contained in:
Alchav 2023-03-14 23:36:39 -04:00 committed by black-sliver
parent e433246f0c
commit 5d6184f1fd
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class SpireWorld(World):
def fill_slot_data(self) -> dict:
slot_data = {
'seed': "".join(self.multiworld.slot_seeds[self.player].choice(string.ascii_letters) for i in range(16))
'seed': "".join(self.multiworld.per_slot_randoms[self.player].choice(string.ascii_letters) for i in range(16))
}
for option_name in spire_options:
option = getattr(self.multiworld, option_name)[self.player]