summaryrefslogtreecommitdiff
path: root/src/projectile/dekuSeedProjectile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/projectile/dekuSeedProjectile.c')
-rw-r--r--src/projectile/dekuSeedProjectile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/projectile/dekuSeedProjectile.c b/src/projectile/dekuSeedProjectile.c
index c086f251..f3b2f5e7 100644
--- a/src/projectile/dekuSeedProjectile.c
+++ b/src/projectile/dekuSeedProjectile.c
@@ -24,7 +24,7 @@ void DekuSeedProjectile_OnTick(Entity* this) {
}
void DekuSeedProjectile_OnCollision(Entity* this) {
- if (this->contactFlags == CONTACT_TAKE_DAMAGE) {
+ if (this->contactFlags == CONTACT_NOW) {
if (this->hitType == 0x68) {
EnqueueSFX(SFX_86);
}
@@ -75,7 +75,7 @@ void DekuSeedProjectile_Action1(Entity* this) {
if ((parent->next != NULL) && (IsColliding(this, parent) != 0)) {
this->iframes = 0x10;
this->knockbackDirection = -this->direction;
- this->contactFlags = CONTACT_TAKE_DAMAGE;
+ this->contactFlags = CONTACT_NOW;
this->knockbackDuration = 0xc;
this->knockbackSpeed = 0;
parent->iframes = 0x10;