From 91fb7a47b55798abbb2fdfe2b80b4af58cb640f0 Mon Sep 17 00:00:00 2001 From: Lylian Date: Sun, 4 May 2025 22:50:08 +0200 Subject: [PATCH] fix revelation dance using the type of the illusion instead of the actual type --- src/data/moves/move.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/moves/move.ts b/src/data/moves/move.ts index d09613123bb..815ee6191eb 100644 --- a/src/data/moves/move.ts +++ b/src/data/moves/move.ts @@ -5154,7 +5154,7 @@ export class MatchUserTypeAttr extends VariableMoveTypeAttr { if (!(moveType instanceof NumberHolder)) { return false; } - const userTypes = user.getTypes(true); + const userTypes = user.getTypes(true, false, undefined, false); if (userTypes.includes(PokemonType.STELLAR)) { // will not change to stellar type const nonTeraTypes = user.getTypes();