diff options
| author | Reinmmar <31139601+Reinmmar@users.noreply.github.com> | 2023-12-11 01:21:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-10 16:21:31 -0800 |
| commit | b163ecafc9e3fed2bf91ec19ae5cd8c0e80c1b5c (patch) | |
| tree | 1624539c80ff4bb13e0d54c7edb7266f41f46bd5 /src/object/objectA.c | |
| parent | aaa441574668f5472662951437c8e4b69acae9c2 (diff) | |
Applied the enum for interactions (#647)
* Interactions enum applied
* Interactions enum applied
Diffstat (limited to 'src/object/objectA.c')
| -rw-r--r-- | src/object/objectA.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object/objectA.c b/src/object/objectA.c index 1648250b..aad2385c 100644 --- a/src/object/objectA.c +++ b/src/object/objectA.c @@ -44,7 +44,7 @@ void ObjectA(ObjectAEntity* this) { } else { AddInteractableSmallKeyLock(super); } - } else if (super->interactType != 0) { + } else if (super->interactType != INTERACTION_NONE) { SetTileType(this->unk_70, COORD_TO_TILE(super), super->collisionLayer); SetFlag(this->unk_86); CreateDust(super); |
