From a1120f8468531bc4b3d64db5776aca174c58330c Mon Sep 17 00:00:00 2001 From: js6pak Date: Tue, 20 Dec 2022 15:25:19 +0100 Subject: [PATCH] Fix CrossplayFlags --- src/Impostor.Api/Innersloth/CrossplayFlags.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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, } -- 2.39.5