From e7ef990a0a3b1ddf40a2f0d517e8eb4e261b1f80 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 24 Oct 2025 23:24:51 -0600 Subject: Lots of little things I should have done already --- src/entity.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/entity.c') diff --git a/src/entity.c b/src/entity.c index 70a7db5..93d713a 100644 --- a/src/entity.c +++ b/src/entity.c @@ -215,6 +215,17 @@ void placeEntityOnGround(Entity* entity, const World* world) setEntityPosition(entity, position); } +bool entityIsPlace(EntityId id) +{ + switch (id) + { + case POND: + case SAMANTHAS_SPOT: + return true; + default: + return false; + } +} InteractionCommand interactWithOldMint(Entity* entity, Game* game, Selection selection) -- cgit v1.2.3