This commit is contained in:
BruceChen 2023-01-14 21:07:09 +08:00
parent d4b3c42d8c
commit ced65122f1
7 changed files with 7 additions and 20 deletions

View file

@ -1,9 +1,7 @@
using System;
using System.Collections.Concurrent;
using System.IO;
using System.Runtime.CompilerServices;
using System.Security.Cryptography;
using System.Threading.Tasks;
namespace MinecraftClient.Crypto
{

View file

@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MinecraftClient.Mapping
namespace MinecraftClient.Mapping
{
public enum MessageFilterType
{

View file

@ -144,7 +144,7 @@ namespace MinecraftClient.Protocol.Message
if (message.isSystemChat)
{
if (Config.Signature.MarkSystemMessage)
color = §7▍§§r"; // Background Gray
color = 7▌§r"; // Background Gray
}
else
{
@ -153,18 +153,18 @@ namespace MinecraftClient.Protocol.Message
if (Config.Signature.ShowModifiedChat && message.unsignedContent != null)
{
if (Config.Signature.MarkModifiedMsg)
color = §6▍§§r"; // Background Yellow
color = 6▌§r"; // Background Yellow
}
else
{
if (Config.Signature.MarkLegallySignedMsg)
color = §2▍§§r"; // Background Green
color = 2▌§r"; // Background Green
}
}
else
{
if (Config.Signature.MarkIllegallySignedMsg)
color = §4▍§§r"; // Background Red
color = 4▌§r"; // Background Red
}
}
return color + text;

View file

@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Permissions;
using static MinecraftClient.Protocol.Message.LastSeenMessageList;
namespace MinecraftClient.Protocol.Message

View file

@ -1,9 +1,5 @@
using System;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.Linq;
using System.Text;
using MinecraftClient.Protocol.Handlers;
using MinecraftClient.Protocol.Message;
using MinecraftClient.Protocol.ProfileKey;