diff options
| author | theo3 <arisstephenson2@gmail.com> | 2023-12-30 20:05:32 -0800 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2023-12-30 20:05:32 -0800 |
| commit | 201955ea052a5188f2e59bdcdbf6c52ff158ee66 (patch) | |
| tree | 66474a7515b56c90e1d0b94a0a39f42da6677d71 /src/projectile/v2Projectile.c | |
| parent | 37714644960c56650dd1067b86aafa685eaf01f4 (diff) | |
create enemy struct and enemy flags
Diffstat (limited to 'src/projectile/v2Projectile.c')
| -rw-r--r-- | src/projectile/v2Projectile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projectile/v2Projectile.c b/src/projectile/v2Projectile.c index cb59c16a..e602c6f4 100644 --- a/src/projectile/v2Projectile.c +++ b/src/projectile/v2Projectile.c @@ -157,7 +157,7 @@ void sub_080ABE04(Entity* this) { } this->x.HALF.HI = newX + ((0xe0 & rand) >> 1); this->y.HALF.HI += ((0xf & rand) << 4); - sub_08004168(this); + SnapToTile(this); InitializeAnimation(this, 0); SoundReq(SFX_12D); } |
