aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornathan <nathansmith@disroot.org>2025-07-06 07:55:39 +0000
committernathan <nathansmith@disroot.org>2025-07-06 07:55:39 +0000
commit942924f120d104cf0d6f080497c286d98bd14e11 (patch)
tree1b0041e55ab7c7efe2c12943a5179becabdd8d69
parent404d0f1bdf95d5951bf2a5e77dca2f9dc18f373e (diff)
downloadFindThings-942924f120d104cf0d6f080497c286d98bd14e11.tar.gz
FindThings-942924f120d104cf0d6f080497c286d98bd14e11.tar.bz2
FindThings-942924f120d104cf0d6f080497c286d98bd14e11.zip
Really increasing the commit count lmao
-rw-r--r--src/player.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player.c b/src/player.c
index 5b68f0a..0342040 100644
--- a/src/player.c
+++ b/src/player.c
@@ -73,6 +73,6 @@ void updatePlayer(Player* player, Game* game)
camera->position = player->position;
camera->target = Vector3Add(player->position, player->direction);
- player->position.y = getWorldHeightAtLocation(game->world, player->position.x,
- player->position.z) + PLAYER_HEIGHT;
+ player->position.y = getWorldHeightAtLocation(
+ game->world, player->position.x, player->position.z) + PLAYER_HEIGHT;
}