diff options
Diffstat (limited to 'engine')
-rwxr-xr-x | engine/breeding.asm | 2 | ||||
-rwxr-xr-x | engine/events/battle_tower/battle_tower.asm | 2 | ||||
-rwxr-xr-x | engine/events/daycare.asm | 2 | ||||
-rwxr-xr-x | engine/evolve.asm | 2 | ||||
-rw-r--r-- | engine/item_effects.asm | 2 | ||||
-rw-r--r-- | engine/routines/correcterrorsinplayerparty.asm | 2 | ||||
-rw-r--r-- | engine/tempmon.asm | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/engine/breeding.asm b/engine/breeding.asm index 0efc10a44..41839bb23 100755 --- a/engine/breeding.asm +++ b/engine/breeding.asm @@ -288,7 +288,7 @@ HatchEggs: ; 16f70 (5:6f70) push hl ld bc, MON_STAT_EXP - 1 add hl, bc - ld b, $0 + ld b, FALSE predef CalcMonStats pop bc ld hl, MON_MAXHP diff --git a/engine/events/battle_tower/battle_tower.asm b/engine/events/battle_tower/battle_tower.asm index 5c430d39b..ec2f5a13c 100755 --- a/engine/events/battle_tower/battle_tower.asm +++ b/engine/events/battle_tower/battle_tower.asm @@ -483,7 +483,7 @@ endr push de ld hl, MON_STAT_EXP - 1 add hl, bc - ld b, $1 + ld b, TRUE predef CalcMonStats pop de pop hl diff --git a/engine/events/daycare.asm b/engine/events/daycare.asm index 8dfdc8c47..1a00cc71f 100755 --- a/engine/events/daycare.asm +++ b/engine/events/daycare.asm @@ -566,7 +566,7 @@ DayCare_GiveEgg: ; 169ac ld e, l pop hl push bc - ld b, $0 + ld b, FALSE predef CalcMonStats pop bc ld hl, MON_HP diff --git a/engine/evolve.asm b/engine/evolve.asm index efcc9c3f0..5a7e75dfa 100755 --- a/engine/evolve.asm +++ b/engine/evolve.asm @@ -264,7 +264,7 @@ EvolveAfterBattle_MasterLoop ld hl, wTempMonExp + 2 ld de, wTempMonMaxHP - ld b, $1 + ld b, TRUE predef CalcMonStats ld a, [wCurPartyMon] diff --git a/engine/item_effects.asm b/engine/item_effects.asm index 7cf784636..6205f78ca 100644 --- a/engine/item_effects.asm +++ b/engine/item_effects.asm @@ -1282,7 +1282,7 @@ UpdateStatsAfterItem: ; ee8c ld e, l ld a, MON_STAT_EXP - 1 call GetPartyParamLocation - ld b, $1 + ld b, TRUE predef_jump CalcMonStats ; ee9f diff --git a/engine/routines/correcterrorsinplayerparty.asm b/engine/routines/correcterrorsinplayerparty.asm index d0091f3a4..e815aa4c8 100644 --- a/engine/routines/correcterrorsinplayerparty.asm +++ b/engine/routines/correcterrorsinplayerparty.asm @@ -89,7 +89,7 @@ Unreferenced_CorrectErrorsInPlayerParty: ld e, l ld hl, MON_STAT_EXP - 1 add hl, bc - ld b, $1 + ld b, TRUE predef CalcMonStats pop hl ld bc, PARTYMON_STRUCT_LENGTH diff --git a/engine/tempmon.asm b/engine/tempmon.asm index 5bee7b06a..723bfb1dd 100644 --- a/engine/tempmon.asm +++ b/engine/tempmon.asm @@ -50,7 +50,7 @@ _TempMonStatsCalculation: ; 50893 ld hl, MON_STAT_EXP - 1 add hl, bc push bc - ld b, $1 + ld b, TRUE predef CalcMonStats pop bc ld hl, MON_HP |