diff options
| author | nathan <nathansmith@disroot.org> | 2026-01-19 13:35:16 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2026-01-19 13:35:16 +0000 |
| commit | f339de8c07647ed4c5d659639f0f3e6c271faf8f (patch) | |
| tree | cd6fb7c1ff260867e862c9a0ae3ec8ccb2c2101d /src/entities | |
| parent | 2a3922ecd4a975c84e7c6efb3b5f0fe182b99d20 (diff) | |
| download | FindThings-f339de8c07647ed4c5d659639f0f3e6c271faf8f.tar.gz FindThings-f339de8c07647ed4c5d659639f0f3e6c271faf8f.tar.bz2 FindThings-f339de8c07647ed4c5d659639f0f3e6c271faf8f.zip | |
Improved viability for inventory item blinking
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 1c95902..445f34a 100644 --- a/src/entities/oldMint.c +++ b/src/entities/oldMint.c @@ -18,6 +18,7 @@ InteractionCommand interactWithOldMint(Entity* entity, Game* game, .id = OLD_MINT, .parent = entity, .textureId = MINT_TEXTURE, + .blinkColor = BLUE, .count = 1 }; diff --git a/src/entities/stickyNickel.c b/src/entities/stickyNickel.c index 00b7da1..3738089 100644 --- a/src/entities/stickyNickel.c +++ b/src/entities/stickyNickel.c @@ -20,6 +20,7 @@ InteractionCommand interactWithStickyNickel(Entity* entity, Game* game, .id = STICKY_NICKEL, .parent = entity, .textureId = NICKEL_TEXTURE, + .blinkColor = RED, .count = 1 }; |
