Dead Sync and Timescale Bug Fix

This commit is contained in:
brausjonas
2022-05-16 00:41:42 +02:00
parent c48efb161a
commit 2da20b9d79
4 changed files with 20 additions and 8 deletions
@@ -253,6 +253,11 @@ public class Client
//send Chunk with position in Chunk
Send(new byte[] { 3, (byte)chunk.x, (byte)chunk.z, xInChunk, yInChunk, zInChunk, blockID });
}
public void SendDeadMessage()
{
Send(new byte[]{10});
}
//default send method
private void Send(byte[] data)