Skip to content

Commit ff15993

Browse files
committed
Fixed true-color in help
1 parent 499096d commit ff15993

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

LabExtended/Patches/Functions/RemoteAdmin/RemoteAdminHelpPatch.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ private static bool Prefix(HelpCommand __instance, ArraySegment<string> argument
3434
{
3535
if (player.IsHost)
3636
{
37-
response = response.FormatTrueColorString(null, true, false);
37+
response = response.FormatTrueColorString(null, false, false);
3838

3939
}
4040
else
4141
{
42-
response = response.FormatTrueColorString(null, false, false);
42+
response = response.FormatTrueColorString(null, true, false);
4343
}
4444
}
4545
else
@@ -110,11 +110,11 @@ private static bool Prefix(HelpCommand __instance, ArraySegment<string> argument
110110
{
111111
if (player.IsHost)
112112
{
113-
response = response.FormatTrueColorString(null, true, false);
113+
response = response.FormatTrueColorString(null, false, false);
114114
}
115115
else
116116
{
117-
response = response.FormatTrueColorString(null, false, false);
117+
response = response.FormatTrueColorString(null, true, false);
118118
}
119119
}
120120
else

0 commit comments

Comments
 (0)