mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
EVERYTHING_CUSTOMIZED -> TRAINER_PARTY
This commit is contained in:
parent
e8487961c7
commit
b10b5fd9c3
@ -52,7 +52,7 @@ struct TrainerMon
|
||||
bool8 isShiny : 1;
|
||||
};
|
||||
|
||||
#define EVERYTHING_CUSTOMIZED(partyArray) partyArray, .partySize = ARRAY_COUNT(partyArray)
|
||||
#define TRAINER_PARTY(partyArray) partyArray, .partySize = ARRAY_COUNT(partyArray)
|
||||
|
||||
struct Trainer
|
||||
{
|
||||
|
1708
src/data/trainers.h
1708
src/data/trainers.h
File diff suppressed because it is too large
Load Diff
@ -38,7 +38,7 @@ static const struct TrainerMon sTestParty1[] =
|
||||
static const struct Trainer sTestTrainer1 =
|
||||
{
|
||||
.trainerName = _("Test1"),
|
||||
.party = EVERYTHING_CUSTOMIZED(sTestParty1),
|
||||
.party = TRAINER_PARTY(sTestParty1),
|
||||
};
|
||||
|
||||
TEST("CreateNPCTrainerPartyForTrainer generates customized Pokémon")
|
||||
|
Loading…
Reference in New Issue
Block a user