mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
PKMN R/B: Don't change classification of items from other worlds #4192
This commit is contained in:
@@ -528,8 +528,8 @@ class PokemonRedBlueWorld(World):
|
|||||||
for sphere in multiworld.get_spheres():
|
for sphere in multiworld.get_spheres():
|
||||||
mon_locations_in_sphere = {}
|
mon_locations_in_sphere = {}
|
||||||
for location in sphere:
|
for location in sphere:
|
||||||
if (location.game == "Pokemon Red and Blue" and (location.item.name in poke_data.pokemon_data.keys()
|
if (location.game == location.item.game == "Pokemon Red and Blue"
|
||||||
or "Static " in location.item.name)
|
and (location.item.name in poke_data.pokemon_data.keys() or "Static " in location.item.name)
|
||||||
and location.item.advancement):
|
and location.item.advancement):
|
||||||
key = (location.player, location.item.name)
|
key = (location.player, location.item.name)
|
||||||
if key in found_mons:
|
if key in found_mons:
|
||||||
|
Reference in New Issue
Block a user