Skip to content

Commit

Permalink
Fix Aegislash's Stance Change animation
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisXV authored Oct 11, 2024
1 parent f8b890e commit d8eac3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion play.pokemonshowdown.com/src/battle-animations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2550,7 +2550,8 @@ export class PokemonSprite extends Sprite {
BattleOtherAnims.schoolingin.anim(scene, [this]);
} else if (speciesid === 'wishiwashi') {
BattleOtherAnims.schoolingout.anim(scene, [this]);
} else if (speciesid === 'mimikyubusted' || speciesid === 'mimikyubustedtotem') {
} else if (speciesid === 'mimikyubusted' || speciesid === 'mimikyubustedtotem' ||
speciesid === 'aegislash' || speciesid === 'aegislashblade') {
// standard animation
} else if (speciesid === 'palafinhero') {
skipAnim = true;
Expand Down

0 comments on commit d8eac3b

Please sign in to comment.