[P2] Fix dark deal reducing transformed Pokemon's held item stack to 1 (#4707)

This commit is contained in:
bjparker1226 2024-10-23 11:04:37 -04:00 committed by GitHub
parent 1ad4f3b376
commit a0baf89297
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -172,7 +172,8 @@ export const DarkDealEncounter: MysteryEncounter =
isBoss: true,
modifierConfigs: bossModifiers.map(m => {
return {
modifier: m
modifier: m,
stackCount: m.getStackCount(),
};
})
};