From 2593d282312a5316f9b000988292dafb873969f1 Mon Sep 17 00:00:00 2001 From: erysdren Date: Sun, 13 Oct 2024 08:16:43 -0500 Subject: [PATCH] game.c: fix player collision --- src/game/game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/game.c b/src/game/game.c index ab7284b..12bfaa7 100644 --- a/src/game/game.c +++ b/src/game/game.c @@ -179,7 +179,7 @@ void player_tick(yeti_t* yeti, entity_t* e) void player_init(entity_t* e) { - e->radius = 0; + e->radius = 64; e->ontick = player_tick; animation_init(&e->animation, 0, 0, 8, 192, LOOP_FOREVER); }