From 415e6c8d3f19583aca1fc2b606ac32e317024630 Mon Sep 17 00:00:00 2001 From: untodesu Date: Mon, 5 Jan 2026 02:41:34 +0500 Subject: Keep trying to figure collision out --- src/game/client/game.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/client/game.cc') diff --git a/src/game/client/game.cc b/src/game/client/game.cc index 9b55b4b..9a2cb56 100644 --- a/src/game/client/game.cc +++ b/src/game/client/game.cc @@ -613,7 +613,7 @@ void client_game::render(void) for(const auto [entity, collision, head, transform] : group.each()) { if(entity == globals::player) { // Don't render ourselves - // continue; + continue; } glm::fvec3 forward; -- cgit