EVERYTHING_CUSTOMIZED -> TRAINER_PARTY
This commit is contained in:
parent
e8487961c7
commit
b10b5fd9c3
3 changed files with 856 additions and 856 deletions
|
@ -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 a new issue