From 61564574fbe9bdde3adf36d572ab47226f2c35d4 Mon Sep 17 00:00:00 2001 From: The Immortal Date: Sat, 2 Nov 2013 11:15:36 +0400 Subject: [PATCH] Stance Change can't be removed --- battle-engine.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/battle-engine.js b/battle-engine.js index 5cabbf43d3..5dbc6264ce 100644 --- a/battle-engine.js +++ b/battle-engine.js @@ -983,7 +983,7 @@ var BattlePokemon = (function() { if (noForce && this.ability === ability.id) { return false; } - if (ability.id === 'multitype' || ability.id === 'illusion' || this.ability === 'multitype') { + if (ability.id === 'multitype' || ability.id === 'illusion' || ability.id === 'stancechange' || this.ability === 'multitype') { return false; } this.ability = ability.id;