aboutsummaryrefslogtreecommitdiffstats
path: root/src/entity.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entity.c')
-rw-r--r--src/entity.c11
1 files changed, 11 insertions, 0 deletions
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)