From 926665d2101c87760dead134fb764e4d4e39882a Mon Sep 17 00:00:00 2001 From: Noah Date: Mon, 16 May 2022 01:17:41 +0200 Subject: [PATCH] Build Bug Fix --- Minecraft Client/Assets/Scripts/Game/Player.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft Client/Assets/Scripts/Game/Player.cs b/Minecraft Client/Assets/Scripts/Game/Player.cs index 9b1da30..901d4bb 100644 --- a/Minecraft Client/Assets/Scripts/Game/Player.cs +++ b/Minecraft Client/Assets/Scripts/Game/Player.cs @@ -30,7 +30,7 @@ public class Player : MonoBehaviour private Vector3 lastPosition = new Vector3(); private Quaternion lastRotation = new Quaternion(); - private byte currentBlock = 0; + private byte currentBlock = 1; //network private Client client = null;