diff options
| author | nathan <nathansmith@disroot.org> | 2026-01-19 11:32:08 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2026-01-19 11:32:08 +0000 |
| commit | 8823db2da13322b006f36081901c48fe9419649c (patch) | |
| tree | 1a602b129c0d6d070f28f4004f988253425f7099 /src/entities | |
| parent | b3e4498e525a41df13ab22d3ad209ed4f71c7a86 (diff) | |
| download | FindThings-8823db2da13322b006f36081901c48fe9419649c.tar.gz FindThings-8823db2da13322b006f36081901c48fe9419649c.tar.bz2 FindThings-8823db2da13322b006f36081901c48fe9419649c.zip | |
idk what i did
Diffstat (limited to 'src/entities')
| -rw-r--r-- | src/entities/oldMint.c | 1 | ||||
| -rw-r--r-- | src/entities/stickyNickel.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/entities/oldMint.c b/src/entities/oldMint.c index be90ed6..1c95902 100644 --- a/src/entities/oldMint.c +++ b/src/entities/oldMint.c @@ -16,6 +16,7 @@ InteractionCommand interactWithOldMint(Entity* entity, Game* game, { InventoryItem item = (InventoryItem){ .id = OLD_MINT, + .parent = entity, .textureId = MINT_TEXTURE, .count = 1 }; diff --git a/src/entities/stickyNickel.c b/src/entities/stickyNickel.c index 87d3687..00b7da1 100644 --- a/src/entities/stickyNickel.c +++ b/src/entities/stickyNickel.c @@ -18,6 +18,7 @@ InteractionCommand interactWithStickyNickel(Entity* entity, Game* game, { InventoryItem item = (InventoryItem){ .id = STICKY_NICKEL, + .parent = entity, .textureId = NICKEL_TEXTURE, .count = 1 }; |
