From d04c5d727a95ed6061853eb4110df01af751669c Mon Sep 17 00:00:00 2001 From: citrusbolt Date: Sat, 9 Sep 2023 22:08:05 -0600 Subject: [PATCH] Add `blockBoxRS` field to `struct BoxPokemon` --- include/pokemon.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/pokemon.h b/include/pokemon.h index 897abe383..4202dd2c4 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -111,7 +111,8 @@ struct BoxPokemon u8 isBadEgg:1; u8 hasSpecies:1; u8 isEgg:1; - u8 unused:5; + u8 blockBoxRS:1; // Unused, but Pokémon Box Ruby & Sapphire will refuse to deposit a Pokémon with this flag set + u8 unused:4; u8 otName[PLAYER_NAME_LENGTH]; u8 markings; u16 checksum;