summaryrefslogtreecommitdiff
path: root/src/00_Core/Actor/ActorManager.cpp
diff options
context:
space:
mode:
authorAetias <144526980+AetiasHax@users.noreply.github.com>2025-06-29 20:56:46 +0200
committerGitHub <noreply@github.com>2025-06-29 20:56:46 +0200
commit3fe49695b4936ea29526eb8b7d07250a69a06c38 (patch)
treeac3efc0f20e0c349357e7ddd49e3859f5f0ee27a /src/00_Core/Actor/ActorManager.cpp
parent21aaec6b40f8cb756e5ef4fff5552b980ab58d4e (diff)
parentf1c2aa37a7a706808b4c992638d89ee211cc0efd (diff)
Merge pull request #97 from AetiasHax/decomp-ActorSpawner
Decomp `ActorSpawner`
Diffstat (limited to 'src/00_Core/Actor/ActorManager.cpp')
-rw-r--r--src/00_Core/Actor/ActorManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/00_Core/Actor/ActorManager.cpp b/src/00_Core/Actor/ActorManager.cpp
index fed1075e..955c447d 100644
--- a/src/00_Core/Actor/ActorManager.cpp
+++ b/src/00_Core/Actor/ActorManager.cpp
@@ -154,7 +154,7 @@ ARM Actor *ActorManager::GetActor(ActorRef *ref) {
ARM bool FilterActor::Filter(Actor *actor) {
if (mType != actor->mType) return false;
- if (mUnk_08 != -1 && mUnk_08 != actor->mUnk_034) return false;
+ if (mUnk_08 != -1 && mUnk_08 != actor->mUnk_034.id) return false;
if (mExcludeRefs != NULL) {
for (s32 i = 0; mExcludeRefs[i].id != -1; ++i) {
ActorRef *ref = &mExcludeRefs[i];