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(
attrType: Constructor<PreSummonAbAttr>,
pokemon: Pokemon,
pokemon: Pokemon,
...args: any[]
): void {
applyAbAttrsInternal<PreSummonAbAttr>(
attrType,
pokemon,
attrType,
pokemon,
(attr, passive) => attr.applyPreSummon(pokemon, passive, args), args
);
}