Server Data and Profileless Chat message packets implemented. ChatPreview packet removed. Message Header packet set only to 1.19.2. Chat Message packet partially implemented.

This commit is contained in:
Milutinke 2022-12-21 12:51:27 +01:00
parent d81a67762e
commit bb160d6d84
2 changed files with 143 additions and 80 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MinecraftClient.Mapping
{
public enum MessageFilterType
{
PassThrough = 0,
FullyFiltered,
PartiallyFiltered
}
}