mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
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:
parent
d81a67762e
commit
bb160d6d84
2 changed files with 143 additions and 80 deletions
15
MinecraftClient/Mapping/MessageFilterType.cs
Normal file
15
MinecraftClient/Mapping/MessageFilterType.cs
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue