diff options
| author | Reinmmar <herwig.orlich@gmail.com> | 2023-09-24 18:03:34 +0200 |
|---|---|---|
| committer | Reinmmar <herwig.orlich@gmail.com> | 2023-09-24 18:03:34 +0200 |
| commit | c19e313df4758a6be19384b1b728283b55ffa92b (patch) | |
| tree | 6dfd01a12fa65989be84db022baf07a57a57df07 /src/beanstalkSubtask.c | |
| parent | bdfaa7dc1a6fb95db00fe5029e505ffe98efed1d (diff) | |
found more anims, also removing != 0 sometimes
Diffstat (limited to 'src/beanstalkSubtask.c')
| -rw-r--r-- | src/beanstalkSubtask.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/beanstalkSubtask.c b/src/beanstalkSubtask.c index a183d3bd..58efa6f8 100644 --- a/src/beanstalkSubtask.c +++ b/src/beanstalkSubtask.c @@ -306,10 +306,10 @@ u32 UpdatePlayerCollision(void) { case 0x3a: case 0x5b: case 0x4051: - if ((gPlayerState.flags & PL_MINISH) != 0) { + if (gPlayerState.flags & PL_MINISH) { return 0; } - if (gPlayerEntity.animationState != 0) { + if (gPlayerEntity.animationState != IdleNorth) { return 0; } gUnk_0200AF00.rActionInteractTile = R_ACTION_READ; |
