diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-05-19 13:11:50 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-05-19 13:11:50 -0400 |
commit | ae50b1148ae48aa083e6d26dd27a662fffb950ed (patch) | |
tree | d479f3feabb83da2caa2223308366165fb7c7de7 | |
parent | d5fff8aa96f556264da03f0a7f70e090e13c713c (diff) |
1 << FRZ == $20
-rw-r--r-- | engine/battle/ai/scoring.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/battle/ai/scoring.asm b/engine/battle/ai/scoring.asm index 7af2db8ad..e83682427 100644 --- a/engine/battle/ai/scoring.asm +++ b/engine/battle/ai/scoring.asm @@ -1569,7 +1569,7 @@ AI_Smart_DefrostOpponent: ; 38ccb ; No move has EFFECT_DEFROST_OPPONENT, so this layer is unused. ld a, [wEnemyMonStatus] - and $20 + and 1 << FRZ ret z dec [hl] dec [hl] |