diff options
| author | Elliptic Ellipsis <elliptic.ellipsis@gmail.com> | 2022-03-25 22:52:17 +0000 |
|---|---|---|
| committer | Elliptic Ellipsis <elliptic.ellipsis@gmail.com> | 2022-06-21 22:21:51 +0100 |
| commit | 6125bec49b5bda24853dd1c9f82d598cf00583fd (patch) | |
| tree | 9eaf8c8533dfac25a53a78397431bd3baf09f1e2 /src/enemy/enemy50.c | |
| parent | 16ffc97541e2ce3d8c010854addb7af8ae7da7ff (diff) | |
Use dec for actionDelay in a lot of entities
Diffstat (limited to 'src/enemy/enemy50.c')
| -rw-r--r-- | src/enemy/enemy50.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/enemy/enemy50.c b/src/enemy/enemy50.c index ac08bf32..3a3968c3 100644 --- a/src/enemy/enemy50.c +++ b/src/enemy/enemy50.c @@ -111,7 +111,7 @@ void sub_08040B9C(Enemy50Entity* this) { super->flags |= 0x80; super->health = 0xff; super->action = 0xa; - super->timer = 0x3c; + super->timer = 60; } this->unk_7a = super->health; } @@ -210,7 +210,7 @@ void Enemy50_Init(Enemy50Entity* this) { void Enemy50_Action1(Enemy50Entity* this) { if (sub_080411E8(this)) { super->action = 2; - super->timer = 0x0f; + super->timer = 15; } } @@ -276,7 +276,7 @@ void Enemy50_Action6(Enemy50Entity* this) { ProcessMovement1(super); } else { super->action = 7; - super->timer = 0x1e; + super->timer = 30; } } } |
