Pokemon Emerald: Fix tracker flags being reset in menus (#2511)
This commit is contained in:
parent
7a46209259
commit
eec35ab1c3
|
@ -254,7 +254,7 @@ class PokemonEmeraldClient(BizHawkClient):
|
||||||
"key": f"pokemon_emerald_events_{ctx.team}_{ctx.slot}",
|
"key": f"pokemon_emerald_events_{ctx.team}_{ctx.slot}",
|
||||||
"default": 0,
|
"default": 0,
|
||||||
"want_reply": False,
|
"want_reply": False,
|
||||||
"operations": [{"operation": "replace", "value": event_bitfield}]
|
"operations": [{"operation": "or", "value": event_bitfield}]
|
||||||
}])
|
}])
|
||||||
self.local_set_events = local_set_events
|
self.local_set_events = local_set_events
|
||||||
|
|
||||||
|
@ -269,7 +269,7 @@ class PokemonEmeraldClient(BizHawkClient):
|
||||||
"key": f"pokemon_emerald_keys_{ctx.team}_{ctx.slot}",
|
"key": f"pokemon_emerald_keys_{ctx.team}_{ctx.slot}",
|
||||||
"default": 0,
|
"default": 0,
|
||||||
"want_reply": False,
|
"want_reply": False,
|
||||||
"operations": [{"operation": "replace", "value": key_bitfield}]
|
"operations": [{"operation": "or", "value": key_bitfield}]
|
||||||
}])
|
}])
|
||||||
self.local_found_key_items = local_found_key_items
|
self.local_found_key_items = local_found_key_items
|
||||||
except bizhawk.RequestFailedError:
|
except bizhawk.RequestFailedError:
|
||||||
|
|
Loading…
Reference in New Issue