diff --git a/play.pokemonshowdown.com/src/battle-animations.ts b/play.pokemonshowdown.com/src/battle-animations.ts index d1633213d2..4cb1ac5934 100644 --- a/play.pokemonshowdown.com/src/battle-animations.ts +++ b/play.pokemonshowdown.com/src/battle-animations.ts @@ -2859,6 +2859,8 @@ export class PokemonSprite extends Sprite { label = Dex.moves.get(id).name; } else if (Dex.abilities.get(id).exists) { label = Dex.abilities.get(id).name; + } else if (Dex.natures.get(id).exists) { + label = Dex.natures.get(id).name; } effect = [label, 'neutral']; }