summaryrefslogtreecommitdiff
path: root/src/script.c
diff options
context:
space:
mode:
authorReinmmar <herwig.orlich@gmail.com>2023-09-19 21:23:45 +0200
committerReinmmar <herwig.orlich@gmail.com>2023-09-19 21:23:45 +0200
commit0fdb9c5ac28daa343618cb4580f4497260bea27f (patch)
tree5bd629a86c61cf61ab973bf7b0897cf2ffb6185f /src/script.c
parent20483c258af363bd75c8b2a4f89403cb5e451900 (diff)
renamed and added a bunch of animations to enum
Diffstat (limited to 'src/script.c')
-rw-r--r--src/script.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script.c b/src/script.c
index c3f6329b..2306dd85 100644
--- a/src/script.c
+++ b/src/script.c
@@ -1598,9 +1598,9 @@ void sub_0807F1E8(Entity* entity, ScriptExecutionContext* context) {
void sub_0807F210(Entity* entity, ScriptExecutionContext* context) {
if (gPlayerState.flags & PL_NO_CAP) {
- gPlayerState.animation = ANIM_PORTAL_LEAVE_NOCAP;
+ gPlayerState.animation = ANIM_HOP_NOCAP;
} else {
- gPlayerState.animation = ANIM_PORTAL_LEAVE;
+ gPlayerState.animation = ANIM_HOP;
}
}