aboutsummaryrefslogtreecommitdiffstats
path: root/src/entity.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/entity.c')
-rw-r--r--src/entity.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/entity.c b/src/entity.c
index 164d9f4..97af95e 100644
--- a/src/entity.c
+++ b/src/entity.c
@@ -74,9 +74,8 @@ void updateEntity(Entity* entity, Game* game)
entity->position, FLOWER_SCALE, WHITE);
break;
case POND:
- DrawBoundingBox(entity->box, YELLOW);
DrawPlane(
- Vector3Add(entity->position, (Vector3){0.0, POND_HEIGHT / 2.0, 0.0}),
+ Vector3Add(entity->position, (Vector3){0.0, POND_HEIGHT * 2.0, 0.0}),
(Vector2){POND_SIZE * 2.5, POND_SIZE * 2.5}, BLUE);
break;
default: