Update base rom, and maybe fix multiworld?

This commit is contained in:
2022-09-18 23:20:42 -07:00
parent d34169b498
commit 2856f86ee3
3 changed files with 5 additions and 4 deletions

View File

@@ -685,9 +685,10 @@ def copy_world_limited(world):
ret.push_precollected(ItemFactory(item.name, item.player))
for edge in world.owedges:
copiededge = ret.check_for_owedge(edge.name, edge.player)
if copiededge is not None:
copiededge.dest = ret.check_for_owedge(edge.dest.name, edge.dest.player)
if edge.dest is not None:
copiededge = ret.check_for_owedge(edge.name, edge.player)
if copiededge is not None:
copiededge.dest = ret.check_for_owedge(edge.dest.name, edge.dest.player)
for door in world.doors:
entrance = ret.check_for_entrance(door.name, door.player)

2
Rom.py
View File

@@ -38,7 +38,7 @@ from source.dungeon.RoomList import Room0127
JAP10HASH = '03a63945398191337e896e5771f77173'
RANDOMIZERBASEHASH = '8a117bc7b099d7e7ec8b44b97a8fcb37'
RANDOMIZERBASEHASH = '220df7b206fcba399fc84be4e6bc2aee'
class JsonRom(object):

Binary file not shown.