summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTal Hayon <talhayon1@gmail.com>2022-03-18 13:45:50 +0200
committerTal Hayon <talhayon1@gmail.com>2022-03-18 13:45:50 +0200
commite017dae13e3db67b03e987eb956df992faca72b2 (patch)
tree08ac34b9a716b405bc4b06443de024cad5c40a91 /src
parent105be8ac6e1410afe627b9a92eaff15c66a64ba8 (diff)
Fix player flag use
Diffstat (limited to 'src')
-rw-r--r--src/object/objectAB.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object/objectAB.c b/src/object/objectAB.c
index 47100a71..767c5238 100644
--- a/src/object/objectAB.c
+++ b/src/object/objectAB.c
@@ -55,5 +55,5 @@ void sub_080A0190(Entity* this) {
CopyPosition(this, &gPlayerEntity);
gPlayerState.queued_action = 3;
gPlayerState.field_0x38 = 0;
- gPlayerState.flags |= PL_FLAGS8000;
+ gPlayerState.flags |= PL_PIT_IS_EXIT;
}