From dbc546fd0ea0a0f698a67b13432df632241c46e0 Mon Sep 17 00:00:00 2001 From: max Date: Tue, 24 Mar 2026 21:43:28 +0100 Subject: [PATCH] Removed collided print --- Entity.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Entity.cs b/Entity.cs index 90bae7c..f25472c 100644 --- a/Entity.cs +++ b/Entity.cs @@ -90,7 +90,7 @@ namespace Voxel if (moveVector.X != originalVector.X) { - Velocity.X = 0; Console.WriteLine("Collided X"); + Velocity.X = 0; } if (moveVector.Y != originalVector.Y) @@ -100,7 +100,7 @@ namespace Voxel if (moveVector.Z != originalVector.Z) { - Velocity.Z = 0; Console.WriteLine("Collided Z"); + Velocity.Z = 0; } OnGround = moveVector.Y != originalVector.Y && originalVector.Y < 0;