mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Trim
This commit is contained in:
parent
c8cecabc5c
commit
684dcb3fc6
2 changed files with 14 additions and 8 deletions
|
|
@ -15,7 +15,7 @@ namespace MinecraftClient.Protocol
|
|||
public readonly string Name;
|
||||
|
||||
// Tuple<Name, Value, Signature(empty if there is no signature)
|
||||
public readonly Tuple<string, string, string>[]? Property;
|
||||
public readonly Tuple<string, string, string?>[]? Property;
|
||||
|
||||
public int Gamemode;
|
||||
|
||||
|
|
@ -31,7 +31,7 @@ namespace MinecraftClient.Protocol
|
|||
|
||||
private byte[]? precedingSignature;
|
||||
|
||||
public PlayerInfo(Guid uuid, string name, Tuple<string, string, string>[]? property, int gamemode, int ping, string? displayName, long? timeStamp, byte[]? publicKey, byte[]? signature)
|
||||
public PlayerInfo(Guid uuid, string name, Tuple<string, string, string?>[]? property, int gamemode, int ping, string? displayName, long? timeStamp, byte[]? publicKey, byte[]? signature)
|
||||
{
|
||||
Uuid = uuid;
|
||||
Name = name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue