diff options
author | pikalaxalt <PikalaxALT@gmail.com> | 2016-06-07 08:13:08 -0400 |
---|---|---|
committer | pikalaxalt <PikalaxALT@gmail.com> | 2016-06-07 08:13:08 -0400 |
commit | ca01a92880a5d71bce2bec6caa7714c8e1cf0f17 (patch) | |
tree | 44d1d4d16fd6785c68845839eac4b4c13780e05d /engine/move_mon.asm | |
parent | b0e7d04ccfc19dfac96c703d56d7ef8e30938624 (diff) |
Fix indentation in many places
Diffstat (limited to 'engine/move_mon.asm')
-rwxr-xr-x | engine/move_mon.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/move_mon.asm b/engine/move_mon.asm index 55a5b9201..e07237d68 100755 --- a/engine/move_mon.asm +++ b/engine/move_mon.asm @@ -266,15 +266,15 @@ endr ld [de], a inc de ld hl, EnemyMonStatus - ; Copy EnemyMonStatus + ; Copy EnemyMonStatus ld a, [hli] ld [de], a inc de - ; Copy EnemyMonUnused + ; Copy EnemyMonUnused ld a, [hli] ld [de], a inc de - ; Copy EnemyMonHP + ; Copy EnemyMonHP ld a, [hli] ld [de], a inc de @@ -452,8 +452,8 @@ SentGetPkmnIntoFromBox: ; db3f ld hl, wBreedMon1Species jr z, .breedmon - ; we want to sent a Pkmn into the Box - ; so check if there's enough space + ; we want to sent a Pkmn into the Box + ; so check if there's enough space ld hl, sBoxCount ld a, [hl] cp MONS_PER_BOX @@ -973,7 +973,7 @@ SentPkmnIntoBox: ; de6e ld [de], a inc de - ; Set all 5 Experience Values to 0 + ; Set all 5 Experience Values to 0 xor a ld b, 2 * 5 .loop2 |