summaryrefslogtreecommitdiff
path: root/src/code/z_en_a_keep.c
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2024-09-07 17:53:48 -0400
committerGitHub <noreply@github.com>2024-09-07 17:53:48 -0400
commit2056ae5f1a0ddb618997e143a9d0ae9fc7d909eb (patch)
tree0f56490f0ecd8d0e5ab6f132435754ebb38562c0 /src/code/z_en_a_keep.c
parenta039aeffb7ba72911da093ae77e6a583939e9afc (diff)
Document Attention/Lock-on Related Actor Flags (#2161)
* document actor flags 0, 2, 3, and 27 * format * fly -> hover * wodring
Diffstat (limited to 'src/code/z_en_a_keep.c')
-rw-r--r--src/code/z_en_a_keep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_en_a_keep.c b/src/code/z_en_a_keep.c
index 80e49121e..b6b513ce6 100644
--- a/src/code/z_en_a_keep.c
+++ b/src/code/z_en_a_keep.c
@@ -132,7 +132,7 @@ void EnAObj_Init(Actor* thisx, PlayState* play) {
break;
case A_OBJ_UNKNOWN_6:
this->focusYoffset = 10.0f;
- thisx->flags |= ACTOR_FLAG_0;
+ thisx->flags |= ACTOR_FLAG_ATTENTION_ENABLED;
this->dyna.bgId = 5;
thisx->gravity = -2.0f;
EnAObj_SetupWaitTalk(this, thisx->params);
@@ -146,7 +146,7 @@ void EnAObj_Init(Actor* thisx, PlayState* play) {
case A_OBJ_SIGNPOST_ARROW:
thisx->textId = (this->textId & 0xFF) | 0x300;
thisx->lockOnArrowOffset = 500.0f;
- thisx->flags |= ACTOR_FLAG_0 | ACTOR_FLAG_3;
+ thisx->flags |= ACTOR_FLAG_ATTENTION_ENABLED | ACTOR_FLAG_NEUTRAL;
this->focusYoffset = 45.0f;
EnAObj_SetupWaitTalk(this, thisx->params);
Collider_InitCylinder(play, &this->collider);