diff options
Diffstat (limited to 'battle/ai/move.asm')
-rwxr-xr-x | battle/ai/move.asm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/battle/ai/move.asm b/battle/ai/move.asm index 0d1c6c968..6e5aca358 100755 --- a/battle/ai/move.asm +++ b/battle/ai/move.asm @@ -19,9 +19,9 @@ AIChooseMove: ; 440ce ; The default score is 20. Unusable moves are given a score of 80. ld a, 20 ld hl, Buffer1 -rept 3 ld [hli], a -endr + ld [hli], a + ld [hli], a ld [hl], a ; Don't pick disabled moves. @@ -107,9 +107,8 @@ endr ld hl, AIScoringPointers dec c ld b, 0 -rept 2 add hl, bc -endr + add hl, bc ld a, [hli] ld h, [hl] ld l, a |