Compare commits
2 Commits
0366198d44
...
51b581aa8c
| Author | SHA1 | Date | |
|---|---|---|---|
| 51b581aa8c | |||
| 6949545ef8 |
6
Fill.py
6
Fill.py
@@ -1135,9 +1135,9 @@ def balance_money_progression(world):
|
|||||||
if location.item:
|
if location.item:
|
||||||
if location.item.name.startswith('Rupee'):
|
if location.item.name.startswith('Rupee'):
|
||||||
if not (location.item.name == 'Rupee (1)' and world.algorithm != 'district'):
|
if not (location.item.name == 'Rupee (1)' and world.algorithm != 'district'):
|
||||||
wallet[location.item.player] += rupee_chart[location.item.name]
|
wallet[location.item.player] += rupee_chart[location.item.name]
|
||||||
if location.item.name != 'Rupees (300)':
|
if location.item.name != 'Rupees (300)':
|
||||||
balance_locations[location.item.player].add(location)
|
balance_locations[location.item.player].add(location)
|
||||||
elif interesting_item(location, location.item, world, location.item.player):
|
elif interesting_item(location, location.item, world, location.item.player):
|
||||||
checked_locations.append(location)
|
checked_locations.append(location)
|
||||||
elif location.item.name in acceptable_balancers:
|
elif location.item.name in acceptable_balancers:
|
||||||
|
|||||||
2
Rom.py
2
Rom.py
@@ -1664,7 +1664,7 @@ def patch_rom(world, rom, player, team, is_mystery=False, rom_header=None):
|
|||||||
offset += 4
|
offset += 4
|
||||||
portal = world.get_portal(portal_list[portal_idx], player)
|
portal = world.get_portal(portal_list[portal_idx], player)
|
||||||
entrance = portal.find_portal_entrance()
|
entrance = portal.find_portal_entrance()
|
||||||
coords = get_entrance_coords(entrance)
|
coords = get_entrance_coords(entrance)
|
||||||
|
|
||||||
# figure out compass entrances and what world (light/dark)
|
# figure out compass entrances and what world (light/dark)
|
||||||
write_int16s(rom, snes_to_pc(0x0ABE2E)+(map_index*6), coords)
|
write_int16s(rom, snes_to_pc(0x0ABE2E)+(map_index*6), coords)
|
||||||
|
|||||||
Reference in New Issue
Block a user