d_a_tbox2 done, f_op_actor_mng cleanup, cleanup fopAc_ac_c member names (#2084)

This commit is contained in:
TakaRikka
2024-03-04 17:33:13 -08:00
committed by GitHub
parent 7ba8c332c7
commit 22e941fd8c
334 changed files with 3797 additions and 6195 deletions
+3 -3
View File
@@ -444,13 +444,13 @@ fopAc_ac_c* cc_at_check(fopAc_ac_c* i_enemy, dCcU_AtInfo* i_AtInfo) {
}
if (i_AtInfo->mAttackPower != 0) {
i_enemy->mHealth -= i_AtInfo->mAttackPower;
i_enemy->health -= i_AtInfo->mAttackPower;
}
s8 pause_time = 0;
if (i_AtInfo->mAttackPower != 0 && i_enemy->mHealth <= 0) {
if (i_AtInfo->mAttackPower != 0 && i_enemy->health <= 0) {
i_AtInfo->mHitStatus = 2;
i_enemy->mHealth = 0;
i_enemy->health = 0;
}
int uvar8;