From 432d8fa1c243862f0d420bca37e77309ba46dbd6 Mon Sep 17 00:00:00 2001 From: palex00 <32203971+palex00@users.noreply.github.com> Date: Mon, 11 Nov 2024 18:02:37 +0100 Subject: [PATCH] [PKMN RB] Adds slot data that tells the tracker V5 logic should be considered (#3995) * Adds v5_update-info to slot data * Adds a comma Co-authored-by: Scipio Wright --------- Co-authored-by: Scipio Wright --- worlds/pokemon_rb/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/worlds/pokemon_rb/__init__.py b/worlds/pokemon_rb/__init__.py index 6db0c9e0..98b1a0c6 100644 --- a/worlds/pokemon_rb/__init__.py +++ b/worlds/pokemon_rb/__init__.py @@ -712,6 +712,7 @@ class PokemonRedBlueWorld(World): "require_pokedex": self.options.require_pokedex.value, "area_1_to_1_mapping": self.options.area_1_to_1_mapping.value, "blind_trainers": self.options.blind_trainers.value, + "v5_update": True, } if self.options.type_chart_seed == "random" or self.options.type_chart_seed.value.isdigit():