Add custom server-side pawn colors (#5543)

This commit is contained in:
RickyRister 2025-02-01 19:25:25 -08:00 committed by GitHub
parent 0fc05e15cd
commit 95cea0f191
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 1748 additions and 49 deletions

View file

@ -8,6 +8,11 @@ message ServerInfo_User {
IsAdmin = 8;
IsJudge = 16;
};
message PawnColorsOverride {
optional string left_side = 1;
optional string right_side = 2;
};
optional string name = 1;
optional uint32 user_level = 2;
optional string address = 3;
@ -22,4 +27,5 @@ message ServerInfo_User {
optional string email = 12;
optional string clientid = 13;
optional string privlevel = 14;
optional PawnColorsOverride pawn_colors = 15;
}