This commit is contained in:
Dragon Fire
2021-02-11 13:56:28 -05:00
parent f22f40e6fe
commit cbd9c04476
+2 -2
View File
@@ -108,9 +108,9 @@ module.exports = class TrainerCardCommand extends Command {
.attach('background', style)
.attach('character', character)
.attach('badges', 8)
.attach('badgesUsed', badgeChoice)
.attach('badgesUsed', badgeChoice.join(','))
.attach('pokemon', pokemon.length)
.attach('pokemonUsed', pokemon)
.attach('pokemonUsed', pokemon.join(','))
.attach('_xfResponseType', 'json');
return Buffer.from(body.trainerCard, 'base64');
}