diff options
| author | vulcandth <vulcandth@gmail.com> | 2022-06-17 21:25:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-17 22:25:53 -0400 |
| commit | 10cfe0903414a572baa48e3d5a0b091ce512a4f4 (patch) | |
| tree | 0fd4c3548ef164a8454ed459d8b73ab48e96aeca /engine/battle/move_effects | |
| parent | Mention WildDataPointers in map_constants.asm (diff) | |
| download | pokeyellow-10cfe0903414a572baa48e3d5a0b091ce512a4f4.tar.gz pokeyellow-10cfe0903414a572baa48e3d5a0b091ce512a4f4.tar.xz pokeyellow-10cfe0903414a572baa48e3d5a0b091ce512a4f4.zip | |
Rename `SLP` to `SLP_MASK` (#89)
Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
Diffstat (limited to 'engine/battle/move_effects')
| -rw-r--r-- | engine/battle/move_effects/haze.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/battle/move_effects/haze.asm b/engine/battle/move_effects/haze.asm index c15c848b..76722d0e 100644 --- a/engine/battle/move_effects/haze.asm +++ b/engine/battle/move_effects/haze.asm @@ -24,7 +24,7 @@ HazeEffect_: .cureStatuses ld a, [hl] ld [hl], $0 - and SLP | (1 << FRZ) + and (1 << FRZ) | SLP_MASK jr z, .cureVolatileStatuses ; prevent the Pokemon from executing a move if it was asleep or frozen ld a, $ff |
