summaryrefslogtreecommitdiff
path: root/src/manager/enemyInteractionManager.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager/enemyInteractionManager.c')
-rw-r--r--src/manager/enemyInteractionManager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/manager/enemyInteractionManager.c b/src/manager/enemyInteractionManager.c
index 0c8428d7..cd393b31 100644
--- a/src/manager/enemyInteractionManager.c
+++ b/src/manager/enemyInteractionManager.c
@@ -66,14 +66,14 @@ void EnemyInteractionManager_Action1(EnemyInteractionManager* this) {
for (i = 0; i < n; i++) {
tmp = this->d.enemies[i];
for (j = i + 1; j < super->timer; j++) {
- sub_08004484(tmp, this->d.enemies[j]);
+ CalcCollisionStaticEntity(tmp, this->d.enemies[j]);
}
}
} else {
for (i = 0; i < n; i++) {
tmp = this->d.enemies[i];
for (j = i + 1; j < super->timer; j++) {
- sub_08004484(this->d.enemies[j], tmp);
+ CalcCollisionStaticEntity(this->d.enemies[j], tmp);
}
}
}