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
d4b3c42d8c
commit
ced65122f1
7 changed files with 7 additions and 20 deletions
|
|
@ -1,9 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Concurrent;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Runtime.CompilerServices;
|
using System.Runtime.CompilerServices;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace MinecraftClient.Crypto
|
namespace MinecraftClient.Crypto
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,4 @@
|
||||||
using System;
|
namespace MinecraftClient.Mapping
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace MinecraftClient.Mapping
|
|
||||||
{
|
{
|
||||||
public enum MessageFilterType
|
public enum MessageFilterType
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -144,7 +144,7 @@ namespace MinecraftClient.Protocol.Message
|
||||||
if (message.isSystemChat)
|
if (message.isSystemChat)
|
||||||
{
|
{
|
||||||
if (Config.Signature.MarkSystemMessage)
|
if (Config.Signature.MarkSystemMessage)
|
||||||
color = "§§7▍§§r"; // Background Gray
|
color = "§7▌§r"; // Background Gray
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
@ -153,18 +153,18 @@ namespace MinecraftClient.Protocol.Message
|
||||||
if (Config.Signature.ShowModifiedChat && message.unsignedContent != null)
|
if (Config.Signature.ShowModifiedChat && message.unsignedContent != null)
|
||||||
{
|
{
|
||||||
if (Config.Signature.MarkModifiedMsg)
|
if (Config.Signature.MarkModifiedMsg)
|
||||||
color = "§§6▍§§r"; // Background Yellow
|
color = "§6▌§r"; // Background Yellow
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (Config.Signature.MarkLegallySignedMsg)
|
if (Config.Signature.MarkLegallySignedMsg)
|
||||||
color = "§§2▍§§r"; // Background Green
|
color = "§2▌§r"; // Background Green
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (Config.Signature.MarkIllegallySignedMsg)
|
if (Config.Signature.MarkIllegallySignedMsg)
|
||||||
color = "§§4▍§§r"; // Background Red
|
color = "§4▌§r"; // Background Red
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return color + text;
|
return color + text;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Security.Permissions;
|
|
||||||
using static MinecraftClient.Protocol.Message.LastSeenMessageList;
|
using static MinecraftClient.Protocol.Message.LastSeenMessageList;
|
||||||
|
|
||||||
namespace MinecraftClient.Protocol.Message
|
namespace MinecraftClient.Protocol.Message
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Data.SqlTypes;
|
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
|
||||||
using MinecraftClient.Protocol.Handlers;
|
|
||||||
using MinecraftClient.Protocol.Message;
|
using MinecraftClient.Protocol.Message;
|
||||||
using MinecraftClient.Protocol.ProfileKey;
|
using MinecraftClient.Protocol.ProfileKey;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -77,7 +77,7 @@ namespace MinecraftClient.Protocol.ProfileKey
|
||||||
public byte[] SignMessage(string message, Guid playerUuid, Guid chatUuid, int messageIndex, DateTimeOffset timestamp, ref byte[] salt, AcknowledgedMessage[] lastSeenMessages)
|
public byte[] SignMessage(string message, Guid playerUuid, Guid chatUuid, int messageIndex, DateTimeOffset timestamp, ref byte[] salt, AcknowledgedMessage[] lastSeenMessages)
|
||||||
{
|
{
|
||||||
byte[] bodySignData = KeyUtils.GetSignatureData_1_19_3(message, playerUuid, chatUuid, messageIndex, timestamp, ref salt, lastSeenMessages);
|
byte[] bodySignData = KeyUtils.GetSignatureData_1_19_3(message, playerUuid, chatUuid, messageIndex, timestamp, ref salt, lastSeenMessages);
|
||||||
|
|
||||||
return SignData(bodySignData);
|
return SignData(bodySignData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -798,7 +798,7 @@ namespace MinecraftClient
|
||||||
ConsoleInteractive.ConsoleWriter.UseVT100ColorCode = General.ConsoleColorMode != ConsoleColorModeType.legacy_4bit;
|
ConsoleInteractive.ConsoleWriter.UseVT100ColorCode = General.ConsoleColorMode != ConsoleColorModeType.legacy_4bit;
|
||||||
|
|
||||||
// Buffer
|
// Buffer
|
||||||
General.History_Input_Records =
|
General.History_Input_Records =
|
||||||
ConsoleInteractive.ConsoleBuffer.SetBackreadBufferLimit(General.History_Input_Records);
|
ConsoleInteractive.ConsoleBuffer.SetBackreadBufferLimit(General.History_Input_Records);
|
||||||
|
|
||||||
// Suggestion
|
// Suggestion
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue