merge up-to-date

This commit is contained in:
Lylian 2025-03-02 23:21:44 +01:00
parent d6bcc4ddad
commit 15e3f3d1e7

View File

@ -5798,12 +5798,12 @@ export function applyPostSummonAbAttrs(
export function applyPreSummonAbAttrs( export function applyPreSummonAbAttrs(
attrType: Constructor<PreSummonAbAttr>, attrType: Constructor<PreSummonAbAttr>,
pokemon: Pokemon, pokemon: Pokemon,
...args: any[] ...args: any[]
): void { ): void {
applyAbAttrsInternal<PreSummonAbAttr>( applyAbAttrsInternal<PreSummonAbAttr>(
attrType, attrType,
pokemon, pokemon,
(attr, passive) => attr.applyPreSummon(pokemon, passive, args), args (attr, passive) => attr.applyPreSummon(pokemon, passive, args), args
); );
} }