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
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue