From: js6pak Date: Tue, 20 Dec 2022 14:25:19 +0000 (+0100) Subject: Fix CrossplayFlags X-Git-Tag: v1.8.0~2^2~1 X-Git-Url: https://git.deb.at/?a=commitdiff_plain;h=a1120f8468531bc4b3d64db5776aca174c58330c;p=rhonda%2Fimpostor.git Fix CrossplayFlags --- diff --git a/src/Impostor.Api/Innersloth/CrossplayFlags.cs b/src/Impostor.Api/Innersloth/CrossplayFlags.cs index 1b251fe..e8696a7 100644 --- a/src/Impostor.Api/Innersloth/CrossplayFlags.cs +++ b/src/Impostor.Api/Innersloth/CrossplayFlags.cs @@ -2,6 +2,16 @@ namespace Impostor.Api.Innersloth; public enum CrossplayFlags { - Default = 4, + Unknown = 0, + StandaloneEpicPC = 1 << 1, + StandaloneSteamPC = 1 << 2, + StandaloneMac = 1 << 3, + StandaloneWin10 = 1 << 4, + StandaloneItch = 1 << 5, + IPhone = 1 << 6, + Android = 1 << 7, + Switch = 1 << 8, + Xbox = 1 << 9, + Playstation = 1 << 10, All = int.MaxValue, }