summaryrefslogtreecommitdiff
path: root/src/enemy/leever.c
diff options
context:
space:
mode:
authortheo3 <arisstephenson2@gmail.com>2021-11-10 00:35:06 -0800
committertheo3 <arisstephenson2@gmail.com>2021-11-10 00:35:06 -0800
commit313cc336f21fcf81e3e336b4fe45ca5053771f93 (patch)
tree9733b9af938fd26c5a6e56013af9c8a915de105e /src/enemy/leever.c
parente6eeeefc50d5e7e4578443ea1f976de694fdb852 (diff)
thumb interwork finished
Diffstat (limited to 'src/enemy/leever.c')
-rw-r--r--src/enemy/leever.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/enemy/leever.c b/src/enemy/leever.c
index d92e1d26..4bdb53c8 100644
--- a/src/enemy/leever.c
+++ b/src/enemy/leever.c
@@ -92,7 +92,7 @@ void Leever_DigUp(Entity* this) {
InitializeAnimation(this, LeeverAnimation_Attack);
} else if (this->frames.b.f0 != 0) {
this->frames.all &= 0xfe;
- this->flags |= 0x80;
+ COLLISION_ON(this);
}
}
@@ -102,7 +102,7 @@ void Leever_Attack(Entity* this) {
if (--this->field_0x74.HWORD == 0) {
this->action = 4;
- this->flags &= 0x7f;
+ COLLISION_OFF(this);
InitializeAnimation(this, LeeverAnimation_DigDown);
}
}