summaryrefslogtreecommitdiff
path: root/engine/routines/knowsmove.asm
diff options
context:
space:
mode:
Diffstat (limited to 'engine/routines/knowsmove.asm')
-rw-r--r--engine/routines/knowsmove.asm25
1 files changed, 0 insertions, 25 deletions
diff --git a/engine/routines/knowsmove.asm b/engine/routines/knowsmove.asm
deleted file mode 100644
index 4ec3da347..000000000
--- a/engine/routines/knowsmove.asm
+++ /dev/null
@@ -1,25 +0,0 @@
-KnowsMove: ; f9ea
- ld a, MON_MOVES
- call GetPartyParamLocation
- ld a, [wPutativeTMHMMove]
- ld b, a
- ld c, NUM_MOVES
-.loop
- ld a, [hli]
- cp b
- jr z, .knows_move
- dec c
- jr nz, .loop
- and a
- ret
-
-.knows_move
- ld hl, .Text_knows
- call PrintText
- scf
- ret
-
-.Text_knows: ; 0xfa06
- ; knows @ .
- text_jump UnknownText_0x1c5ea8
- db "@"