fix: fix "rolor" typo

This commit is contained in:
Oliver Booth 2024-01-06 12:54:27 +00:00
parent 98267c5ad7
commit 211d082b7e
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ internal enum IntegerAttribute
TerrainNodeRevision, TerrainNodeRevision,
ClickedSession, ClickedSession,
ChatType, ChatType,
ChatRolorRed, ChatColorRed,
ChatColorGreen, ChatColorGreen,
ChatColorBlue, ChatColorBlue,
ChatEffects, ChatEffects,

View File

@ -67,7 +67,7 @@ public sealed partial class VirtualParadiseClient
if (type == 1) if (type == 1)
{ {
int r = vp_int(sender, IntegerAttribute.ChatRolorRed); int r = vp_int(sender, IntegerAttribute.ChatColorRed);
int g = vp_int(sender, IntegerAttribute.ChatColorGreen); int g = vp_int(sender, IntegerAttribute.ChatColorGreen);
int b = vp_int(sender, IntegerAttribute.ChatColorBlue); int b = vp_int(sender, IntegerAttribute.ChatColorBlue);
color = Color.FromArgb(r, g, b); color = Color.FromArgb(r, g, b);